diff options
Diffstat (limited to 'std/testing/README.md')
-rw-r--r-- | std/testing/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/std/testing/README.md b/std/testing/README.md index a3640e728..c7c614103 100644 --- a/std/testing/README.md +++ b/std/testing/README.md @@ -44,7 +44,7 @@ Deno.test({ fn(): void { assertEquals("world", "world"); assertEquals({ hello: "world" }, { hello: "world" }); - } + }, }); await Deno.runTests(); @@ -165,7 +165,7 @@ bench({ b.start(); for (let i = 0; i < 1e6; i++); b.stop(); - } + }, }); ``` |