utils/ts-src/hourFloor.test.ts

6 lines
153 B
TypeScript
Raw Normal View History

2020-11-17 11:16:34 +00:00
import { hourFloor } from './hourFloor';
test('Should return the correct Base32 value', () => {
expect(hourFloor(1605532173)).toEqual('1fnp540');
});