mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
15 lines
142 B
TypeScript
15 lines
142 B
TypeScript
Deno.test({
|
|
name: "abc",
|
|
fn() {},
|
|
});
|
|
|
|
Deno.test({
|
|
only: true,
|
|
name: "def",
|
|
fn() {},
|
|
});
|
|
|
|
Deno.test({
|
|
name: "ghi",
|
|
fn() {},
|
|
});
|