mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
7 lines
251 B
TypeScript
7 lines
251 B
TypeScript
|
Deno.test("test0", () => {});
|
||
|
Deno.test(function test1() {});
|
||
|
Deno.test({ name: "test2", fn: () => {} });
|
||
|
Deno.test("test3", { permissions: "none" }, () => {});
|
||
|
Deno.test({ name: "test4" }, () => {});
|
||
|
Deno.test({ ignore: true }, function test5() {});
|