File size: 840 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | import { dequal } from '../dequal';
describe('dequal', () => {
const areFunctions = (a: any, b: any): boolean =>
a?.constructor === Function && b?.constructor === Function;
test('without compare returns false for functions', () => {
expect(
dequal(
() => {},
() => {}
)
).toEqual(false);
});
test('with a compare returns true for functions', () => {
expect(
dequal(
() => {},
() => {},
areFunctions
)
).toEqual(true);
});
test('without compare returns false for nested functions', () => {
expect(dequal({ fn: () => {} }, { fn: () => {} })).toEqual(false);
});
test('with a compare returns true for nested functions', () => {
expect(dequal({ fn: () => {} }, { fn: () => {} }, areFunctions)).toEqual(
true
);
});
});
|