Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / applications / calendar / src / app / store / busySlots / busySlotsSelectors.helpers.test.ts
bloba98d18968ad2726c638005d191ec50f98d2178c3
1 import { deduplicateBusySlots } from './busySlotsSelectors.helpers';
2 import type { BusySlot } from './busySlotsSlice';
4 describe('deduplicateBusySlots', () => {
5     it('should deduplicate equal busy slots', () => {
6         const busySlots = [
7             { Start: 1, End: 2 },
8             { Start: 1, End: 2 },
9             { Start: 1, End: 2 },
10             { Start: 2, End: 3 },
11         ] as BusySlot[];
13         expect(deduplicateBusySlots(busySlots)).toEqual([
14             { Start: 1, End: 2 },
15             { Start: 2, End: 3 },
16         ]);
17     });
18 });