Skip to content

Commit

Permalink
Fix not addressing to Sets as object without keys
Browse files Browse the repository at this point in the history
  • Loading branch information
ofekm97 committed Jan 29, 2024
1 parent 38bb798 commit 769fa58
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -42,6 +42,7 @@
- `[@jest/expect-utils]` [**BREAKING**] exclude non-enumerable in object matching ([#14670](https://github.com/jestjs/jest/pull/14670))
- `[@jest/expect-utils]` Fix comparison of `URL` ([#14672](https://github.com/jestjs/jest/pull/14672))
- `[@jest/expect-utils]` Check `Symbol` properties in equality ([#14688](https://github.com/jestjs/jest/pull/14688))
- `[@jest/expect-utils]` Fix not addressing to Sets as objects without keys ([#14873](https://github.com/jestjs/jest/pull/14873))
- `[jest-leak-detector]` Make leak-detector more aggressive when running GC ([#14526](https://github.com/jestjs/jest/pull/14526))
- `[jest-runtime]` Properly handle re-exported native modules in ESM via CJS ([#14589](https://github.com/jestjs/jest/pull/14589))
- `[jest-util]` Make sure `isInteractive` works in a browser ([#14552](https://github.com/jestjs/jest/pull/14552))
Expand Down
28 changes: 28 additions & 0 deletions packages/expect-utils/src/__tests__/utils.test.ts
Expand Up @@ -401,6 +401,34 @@ describe('subsetEquality()', () => {
});
});
});

describe('subset is not object with keys', () => {
test('returns true if subset has keys', () => {
expect(subsetEquality({foo: 'bar'}, {foo: 'bar'})).toBe(true);
});
test('returns true if subset has Symbols', () => {
const symbol = Symbol('foo');
expect(subsetEquality({[symbol]: 'bar'}, {[symbol]: 'bar'})).toBe(true);
});
test('returns undefined if subset has no keys', () => {
expect(subsetEquality('foo', 'bar')).toBeUndefined();
});
test('returns undefined if subset is null', () => {
expect(subsetEquality({foo: 'bar'}, null)).toBeUndefined();
});
test('returns undefined if subset is Error', () => {
expect(subsetEquality({foo: 'bar'}, new Error())).toBeUndefined();
});
test('returns undefined if subset is Array', () => {
expect(subsetEquality({foo: 'bar'}, [])).toBeUndefined();
});
test('returns undefined if subset is Date', () => {
expect(subsetEquality({foo: 'bar'}, new Date())).toBeUndefined();
});
test('returns undefined if subset is Set', () => {
expect(subsetEquality({foo: 'bar'}, new Set())).toBeUndefined();
});
});
});

describe('iterableEquality', () => {
Expand Down
3 changes: 2 additions & 1 deletion packages/expect-utils/src/utils.ts
Expand Up @@ -336,7 +336,8 @@ const isObjectWithKeys = (a: any) =>
isObject(a) &&
!(a instanceof Error) &&
!Array.isArray(a) &&
!(a instanceof Date);
!(a instanceof Date) &&
!(a instanceof Set);

export const subsetEquality = (
object: unknown,
Expand Down

0 comments on commit 769fa58

Please sign in to comment.