1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-16 10:54:14 -05:00
denoland-deno/cli/tests/testdata/test/only.ts

16 lines
148 B
TypeScript
Raw Normal View History

2020-06-12 16:58:04 +01:00
Deno.test({
name: "before",
2020-06-12 16:58:04 +01:00
fn() {},
});
Deno.test({
only: true,
name: "only",
2020-06-12 16:58:04 +01:00
fn() {},
});
Deno.test({
name: "after",
2020-06-12 16:58:04 +01:00
fn() {},
});