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

6 lines
153 B
TypeScript

import { hourFloor } from './hourFloor';
test('Should return the correct Base32 value', () => {
expect(hourFloor(1605532173)).toEqual('1fnp540');
});