mirror of
https://github.com/dvmarinoff/Auuki.git
synced 2026-02-17 23:47:39 +01:00
* fixing up the tests - fixing issues with jsdom env in jest - tests from other branches removed - file reordering inside the test folder - version bump for jest * adding tests for local storage and idb * adding tests for ftms - ControlPoint - RequestControl, - Reset, - PowerTarget, - ResistanceTarget, - SimulationParameters, - WheelCircumference, - Response - IndoorBikeData - FitnessMachineStatus - SupportedRanges - PowerRange - ResistanceRange * adding Tacx Flux trainer xml config for nRF Connect
22 lines
291 B
JavaScript
22 lines
291 B
JavaScript
/**
|
|
* @jest-environment jsdom
|
|
*/
|
|
|
|
import { first, last, xf } from '../../src/functions.js';
|
|
|
|
describe('Timer', () => {
|
|
|
|
test('placeholder', () => {
|
|
expect(1).toBe(1);
|
|
});
|
|
});
|
|
|
|
|
|
|
|
// describe('', () => {
|
|
// test('', () => {
|
|
// expect().toBe();
|
|
// });
|
|
// });
|
|
|