wip: unit test fixes continued

This commit is contained in:
jdalton
2023-09-21 07:45:49 -07:00
parent bd518dd906
commit a79c5c434c
14 changed files with 66 additions and 77 deletions

View File

@@ -26,7 +26,7 @@ describe('slice and toArray', () => {
it(`\`_.${methodName}\` should return a shallow clone of arrays`, () => {
const actual = func(array);
expect(actual).toEqual(array);
assert.notStrictEqual(actual, array);
expect(actual).not.toBe(array);
});
it(`\`_.${methodName}\` should work with a node list for \`collection\``, () => {