Cleanup - unused files / unused exports / duplicate exports
[ProtonMail-WebClient.git] / packages / utils / noop.test.ts
bloba624358cad623b64fcc0876bd139ad1e0488b49b
1 import noop from './noop';
3 describe('noop()', () => {
4     it('returns undefined', () => {
5         expect(noop()).toBe(undefined);
6     });
7 });