Skip to content

Commit a39dab0

Browse files
fix(types): add unorderedEqual to Assertions
1 parent 4fc75ca commit a39dab0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

types/assertions.d.cts

+3
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ export type Assertions = {
123123
* indicating whether the assertion passed.
124124
*/
125125
truthy: TruthyAssertion;
126+
127+
/** Assert that all values in `actual` are in `expected`, returning a boolean indicating whether the assertion passed. */
128+
unorderedEqual: UnorderedEqualAssertion;
126129
};
127130

128131
export type AssertAssertion = {

0 commit comments

Comments
 (0)