1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00
denoland-deno/tests/testdata/test/only.ts

21 lines
198 B
TypeScript
Raw Normal View History

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