Files
smarttime/test/test.timer.both.ts

26 lines
549 B
TypeScript

import { expect, tap } from '@git.zone/tstest/tapbundle';
import { Timer } from '../ts/index.js';
let testTimer: Timer;
tap.test('should create a valid timer', async () => {
testTimer = new Timer(1000);
expect(testTimer).toBeInstanceOf(Timer);
});
tap.test('should start timer', async () => {
testTimer.start();
await testTimer.completed;
});
tap.test('should reset a timer', async () => {
testTimer.reset();
testTimer.start();
testTimer.reset();
testTimer.start();
await testTimer.completed;
});
export default tap.start();