it-tools/src/tools/chronometer/chronometer.service.test.ts

14 lines
441 B
TypeScript
Raw Normal View History

2022-07-24 00:58:18 +02:00
import { describe, expect, it } from 'vitest';
import { formatMs } from './chronometer.service';
2022-07-24 00:58:18 +02:00
describe('chronometer', () => {
describe('formatChronometerTime', () => {
it('format the elapsed time', () => {
expect(formatMs(0)).toEqual('00:00.000');
expect(formatMs(1)).toEqual('00:00.001');
expect(formatMs(123456)).toEqual('02:03.456');
expect(formatMs(12345600)).toEqual('03:25:45.600');
2022-07-24 00:58:18 +02:00
});
});
});