mirror of
https://github.com/denoland/deno.git
synced 2024-12-27 01:29:14 -05:00
fix usage code syntax error (#318)
This commit is contained in:
parent
1e589b9553
commit
7f4dae109e
1 changed files with 4 additions and 4 deletions
|
@ -51,8 +51,8 @@ import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
|
|||
test({
|
||||
name: "testing example",
|
||||
fn() {
|
||||
assertEquals("world", "world"));
|
||||
assertEquals({ hello: "world" }, { hello: "world" }));
|
||||
assertEquals("world", "world");
|
||||
assertEquals({ hello: "world" }, { hello: "world" });
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -63,8 +63,8 @@ Short syntax (named function instead of object):
|
|||
|
||||
```ts
|
||||
test(function example() {
|
||||
assertEquals("world", "world"));
|
||||
assertEquals({ hello: "world" }, { hello: "world" }));
|
||||
assertEquals("world", "world");
|
||||
assertEquals({ hello: "world" }, { hello: "world" });
|
||||
});
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue