mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
fix usage code syntax error (#318)
This commit is contained in:
parent
1e589b9553
commit
7f4dae109e
@ -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 New Issue
Block a user