updeep-remeda/test/reject-spec.js

9 lines
187 B
JavaScript
Raw Normal View History

2015-08-13 05:31:01 +00:00
import expect from 'expect';
import u from '../lib';
describe('u.reject', () => {
it('freezes the result', () => {
2015-08-13 05:31:01 +00:00
expect(Object.isFrozen(u.reject('a', []))).toBe(true);
});
});