f7e570934d
Fixes #17
9 lines
187 B
JavaScript
9 lines
187 B
JavaScript
import expect from 'expect';
|
|
import u from '../lib';
|
|
|
|
describe('u.reject', () => {
|
|
it('freezes the result', () => {
|
|
expect(Object.isFrozen(u.reject('a', []))).toBe(true);
|
|
});
|
|
});
|