summaryrefslogtreecommitdiff
path: root/docs/testing/assertions.md
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2020-07-14 15:24:17 -0400
committerGitHub <noreply@github.com>2020-07-14 15:24:17 -0400
commitcde4dbb35132848ffece59ef9cfaccff32347124 (patch)
treecc7830968c6decde704c8cfb83c9185193dc698f /docs/testing/assertions.md
parent9eca71caa1674c31f9cc5d4e86c03f10b59e0a00 (diff)
Use dprint for internal formatting (#6682)
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",
);
});
```