summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/test/steps
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-01-18 15:02:56 -0500
committerGitHub <noreply@github.com>2022-01-18 15:02:56 -0500
commit0f3a53e5d477ca2c422ed58a65bd368d1eb0a5b2 (patch)
tree43e8199a4b5831c01bfefd439b53a2098ee4805d /cli/tests/testdata/test/steps
parentce52bfc59c6700e64dbe941485d078ceb9dd2158 (diff)
feat: stabilize test steps API (#13400)
Diffstat (limited to 'cli/tests/testdata/test/steps')
-rw-r--r--cli/tests/testdata/test/steps/no_unstable_flag.out13
-rw-r--r--cli/tests/testdata/test/steps/no_unstable_flag.ts4
2 files changed, 0 insertions, 17 deletions
diff --git a/cli/tests/testdata/test/steps/no_unstable_flag.out b/cli/tests/testdata/test/steps/no_unstable_flag.out
deleted file mode 100644
index 8fe6ba4f7..000000000
--- a/cli/tests/testdata/test/steps/no_unstable_flag.out
+++ /dev/null
@@ -1,13 +0,0 @@
-[WILDCARD]
-running 1 test from [WILDCARD]/no_unstable_flag.ts
-test description ... FAILED ([WILDCARD])
-
-failures:
-
-description
-Error: Test steps are unstable. The --unstable flag must be provided.
- at [WILDCARD]
-
-failures:
-
-[WILDCARD]
diff --git a/cli/tests/testdata/test/steps/no_unstable_flag.ts b/cli/tests/testdata/test/steps/no_unstable_flag.ts
deleted file mode 100644
index 737efba11..000000000
--- a/cli/tests/testdata/test/steps/no_unstable_flag.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-Deno.test("description", async (t) => {
- // deno-lint-ignore no-explicit-any
- await (t as any).step("step", () => {});
-});