utils/ts-src/toHour.test.ts

6 lines
143 B
TypeScript
Raw Normal View History

2020-11-17 11:16:34 +00:00
import { toHour } from './toHour';
test('Should return number of MS to the hour', () => {
expect(toHour(1605532173, 0)).toEqual(67827);
});