diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2021-10-11 09:45:02 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-11 09:45:02 -0400 |
| commit | 426ebf854a82c63cdaa2413fbd1b005025dba95b (patch) | |
| tree | 316a426e280db29745444e7606952c8c235c846a /cli/tests/testdata/test/steps/no_unstable_flag.ts | |
| parent | 668b400ff2fa5634f575e54f40ab1f0b78fcdf16 (diff) | |
feat(unstable/test): imperative test steps API (#12190)
Diffstat (limited to 'cli/tests/testdata/test/steps/no_unstable_flag.ts')
| -rw-r--r-- | cli/tests/testdata/test/steps/no_unstable_flag.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/tests/testdata/test/steps/no_unstable_flag.ts b/cli/tests/testdata/test/steps/no_unstable_flag.ts new file mode 100644 index 000000000..737efba11 --- /dev/null +++ b/cli/tests/testdata/test/steps/no_unstable_flag.ts @@ -0,0 +1,4 @@ +Deno.test("description", async (t) => { + // deno-lint-ignore no-explicit-any + await (t as any).step("step", () => {}); +}); |
