utils/ts-src/toHour.test.ts
Martin Donnelly c30b36b3f6 init
2020-11-17 11:16:34 +00:00

6 lines
143 B
TypeScript

import { toHour } from './toHour';
test('Should return number of MS to the hour', () => {
expect(toHour(1605532173, 0)).toEqual(67827);
});