diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2020-07-14 15:24:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 15:24:17 -0400 |
commit | cde4dbb35132848ffece59ef9cfaccff32347124 (patch) | |
tree | cc7830968c6decde704c8cfb83c9185193dc698f /docs/testing/assertions.md | |
parent | 9eca71caa1674c31f9cc5d4e86c03f10b59e0a00 (diff) |
Use dprint for internal formatting (#6682)
Diffstat (limited to 'docs/testing/assertions.md')
-rw-r--r-- | docs/testing/assertions.md | 6 |
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", ); }); ``` |