From a39dab098154c8d4fbfd39a85a72e13e71004c7e Mon Sep 17 00:00:00 2001 From: tommy-mitchell Date: Tue, 15 Aug 2023 17:58:52 -0500 Subject: [PATCH] fix(`types`): add `unorderedEqual` to `Assertions` --- types/assertions.d.cts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/types/assertions.d.cts b/types/assertions.d.cts index 5823ce4f9..316379f7c 100644 --- a/types/assertions.d.cts +++ b/types/assertions.d.cts @@ -123,6 +123,9 @@ export type Assertions = { * indicating whether the assertion passed. */ truthy: TruthyAssertion; + + /** Assert that all values in `actual` are in `expected`, returning a boolean indicating whether the assertion passed. */ + unorderedEqual: UnorderedEqualAssertion; }; export type AssertAssertion = {