Cleanup - unused files / unused exports / duplicate exports
[ProtonMail-WebClient.git] / packages / utils / removeIndex.test.ts
blob7a253e00e0c78d693bbd894bba5cd35b418ea1cd
1 import removeIndex from './removeIndex';
3 describe('removeIndex()', () => {
4     it('removes item at a given index from an array', () => {
5         const output = removeIndex(['a', 'b', 'c', 'd', 'e'], 2);
6         const expected = ['a', 'b', 'd', 'e'];
7         expect(output).toEqual(expected);
8     });
9 });