Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / utils / lastItem.test.ts
blob4624daaea280871a6d9fb454f3ad97177c02ff78
1 import lastItem from './lastItem';
3 describe('lastItem()', () => {
4     it('should return undefined when array is empty', () => {
5         const result = lastItem([]);
7         expect(result).toBe(undefined);
8     });
10     it('should return only item when array is of length 1', () => {
11         const item = 'item';
12         const result = lastItem([item]);
14         expect(result).toBe(item);
15     });
17     it('should return last item when array is of length greater than 1', () => {
18         const item = 'item';
19         const result = lastItem(['1', '2', item]);
21         expect(result).toBe(item);
22     });
23 });