summaryrefslogtreecommitdiff
path: root/tests/specs/test/only/main.ts
blob: 26b4cd425749efe7390f2cc44695094f7d0287b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Deno.test({
  name: "before",
  fn() {},
});

Deno.test({
  only: true,
  name: "only",
  fn() {},
});

Deno.test.only({
  name: "only2",
  fn() {},
});

Deno.test({
  name: "after",
  fn() {},
});