Skip to content

The array helpers don't work as expected if the elements are Sets #710

Open
@florian-lackner365

Description

@florian-lackner365

List of affected functions:

  • toIncludeAllMembers
  • toIncludeAnyMembers
  • toIncludeAnyMembers

Example

test('detects that sets are different', () => {
  expect([new Set([1])]).toIncludeSameMembers([new Set([1, 2])]);
});

This test passes, but it shouldn't, because the Sets are not equal.

Activity

changed the title The array helpers don't work as expected if the elements are Sets The array helpers don't work as expected if the elements are `Set`s on Mar 19, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      The array helpers don't work as expected if the elements are `Set`s · Issue #710 · jest-community/jest-extended