UNPKG

wix-style-react

Version:
11 lines (9 loc) 274 B
import identity from './identity'; describe('identity operator', function () { it('should return given input', function () { var aNumber = 4; var anObject = { a: 1 }; expect(identity(aNumber)).toBe(4); expect(identity(anObject)).toBe(anObject); }); });