mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
fix typo (#6476)
This commit is contained in:
parent
6f09b8de41
commit
1fcb71b355
1 changed files with 2 additions and 3 deletions
|
@ -18,12 +18,11 @@ Deno.test("hello world #1", () => {
|
|||
// Fully fledged test definition, longer form, but configurable (see below)
|
||||
Deno.test({
|
||||
name: "hello world #2",
|
||||
fn() => {
|
||||
fn: () => {
|
||||
const x = 1 + 2;
|
||||
assertEquals(x, 3);
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
```
|
||||
|
||||
## Assertions
|
||||
|
|
Loading…
Reference in a new issue