summaryrefslogtreecommitdiff
path: root/docs/testing/assertions.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/testing/assertions.md')
-rw-r--r--docs/testing/assertions.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/testing/assertions.md b/docs/testing/assertions.md
index 93b73da96..b8874a0e9 100644
--- a/docs/testing/assertions.md
+++ b/docs/testing/assertions.md
@@ -150,7 +150,7 @@ Deno.test("Test Assert Throws", () => {
throw new Error("Panic!");
},
Error,
- "Panic!"
+ "Panic!",
);
});
```
@@ -168,7 +168,7 @@ Deno.test("Test Assert Throws Async", () => {
});
},
Error,
- "Panic! Threw Error"
+ "Panic! Threw Error",
);
assertThrowsAsync(
@@ -176,7 +176,7 @@ Deno.test("Test Assert Throws Async", () => {
return Promise.reject(new Error("Panic! Reject Error"));
},
Error,
- "Panic! Reject Error"
+ "Panic! Reject Error",
);
});
```