mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-25 01:06:15 -04:00
13 lines
508 B
TypeScript
13 lines
508 B
TypeScript
![]() |
import { describe, expect, it } from 'vitest';
|
||
|
import { formatChronometerTime } from './chronometer.service';
|
||
|
|
||
|
describe('chronometer', () => {
|
||
|
describe('formatChronometerTime', () => {
|
||
|
it('format the elapsed time', () => {
|
||
|
expect(formatChronometerTime({ elapsed: 123456 })).toEqual('02:03.456');
|
||
|
expect(formatChronometerTime({ elapsed: 123456, msPerUnit: 100 })).toEqual('03:25:45.600');
|
||
|
expect(formatChronometerTime({ elapsed: 12345600 })).toEqual('03:25:45.600');
|
||
|
});
|
||
|
});
|
||
|
});
|