Use source loader for email sprite icons
[ProtonMail-WebClient.git] / packages / utils / identity.test.ts
blobeb68a024a02ca8340090f0599af64c1345caf0d3
1 import identity from './identity';
3 describe('identity()', () => {
4     it('returns the value as reference', () => {
5         const value = {};
6         expect(identity(value)).toBe(value);
7     });
8 });