summaryrefslogtreecommitdiff
path: root/docs/testing
diff options
context:
space:
mode:
Diffstat (limited to 'docs/testing')
-rw-r--r--docs/testing/assertions.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/testing/assertions.md b/docs/testing/assertions.md
index e80e760fe..9de7d1f35 100644
--- a/docs/testing/assertions.md
+++ b/docs/testing/assertions.md
@@ -22,6 +22,7 @@ The assertions module provides 10 assertions:
- `assertArrayIncludes(actual: unknown[], expected: unknown[], msg?: string): void`
- `assertMatch(actual: string, expected: RegExp, msg?: string): void`
- `assertNotMatch(actual: string, expected: RegExp, msg?: string): void`
+- `assertObjectMatch( actual: Record<PropertyKey, unknown>, expected: Record<PropertyKey, unknown>): void`
- `assertThrows(fn: () => void, ErrorClass?: Constructor, msgIncludes = "", msg?: string): Error`
- `assertThrowsAsync(fn: () => Promise<void>, ErrorClass?: Constructor, msgIncludes = "", msg?: string): Promise<Error>`
@@ -136,6 +137,21 @@ Deno.test("Test Assert Not Match", () => {
});
```
+### Object
+
+Use `assertObjectMatch` to check that a JavaScript object matches a subset of
+the properties of an object.
+
+```js
+// Simple subset
+assertObjectMatch(
+ { foo: true, bar: false },
+ {
+ foo: true,
+ },
+);
+```
+
### Throws
There are two ways to assert whether something throws an error in Deno,