mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-13 11:17:26 +02:00
8 lines
175 B
TypeScript
8 lines
175 B
TypeScript
import { generateHourBuckets } from './time-utils';
|
|
|
|
test('generateHourBuckets', () => {
|
|
const result = generateHourBuckets(24);
|
|
|
|
expect(result).toHaveLength(24);
|
|
});
|