fix(core): update
This commit is contained in:
17
test/test.both.ts
Normal file
17
test/test.both.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { expect, tap } from '@pushrocks/tapbundle';
|
||||
import * as smartobject from '../ts/index';
|
||||
|
||||
tap.test('first test', async () => {
|
||||
const result = smartobject.compareObjects(
|
||||
{ thisIsEq: 'wow', thisIsDeepEq: { deeper: 'sodeep' } },
|
||||
{ thisIsEq: 'wow', thisIsDeepEq: { deeper: 'sodeep' }, hey: 'there' }
|
||||
);
|
||||
console.log(result);
|
||||
});
|
||||
|
||||
tap.test('should fast deep equal objects', async () => {
|
||||
expect(smartobject.fastDeepEqual({hello: 'yes'}, {hello: 'yes'})).to.be.true;
|
||||
expect(smartobject.fastDeepEqual({hello: 'yes'}, {hello: 3})).to.be.false;
|
||||
});
|
||||
|
||||
tap.start();
|
||||
Reference in New Issue
Block a user