Skip to content

Commit

Permalink
fix: toIncludeAllPartialMembers types (#370)
Browse files Browse the repository at this point in the history
  • Loading branch information
idan-at authored Oct 18, 2021
1 parent 8f600b1 commit c3bf852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ declare namespace jest {
* Use `.toIncludeAllPartialMembers` when checking if an `Array` contains all of the same partial members of a given set.
* @param {Array.<*>} members
*/
toIncludeAllMembers(members: any[]): R;
toIncludeAllPartialMembers<E = any>(members: E[]): R;

/**
* Use `.toIncludeAnyMembers` when checking if an `Array` contains any of the members of a given set.
Expand Down

0 comments on commit c3bf852

Please sign in to comment.