diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/integration/test_tests.rs | 12 | ||||
-rw-r--r-- | tests/testdata/test/short-pass-jobs-flag-warning.out | 8 |
2 files changed, 0 insertions, 20 deletions
diff --git a/tests/integration/test_tests.rs b/tests/integration/test_tests.rs index ed3d9fd42..4bf79a0d2 100644 --- a/tests/integration/test_tests.rs +++ b/tests/integration/test_tests.rs @@ -154,18 +154,6 @@ itest!(parallel_flag_with_env_variable { output: "test/short-pass.out", }); -itest!(jobs_flag { - args: "test test/short-pass.ts --jobs", - exit_code: 0, - output: "test/short-pass-jobs-flag-warning.out", -}); - -itest!(jobs_flag_with_numeric_value { - args: "test test/short-pass.ts --jobs=2", - exit_code: 0, - output: "test/short-pass-jobs-flag-warning.out", -}); - itest!(load_unload { args: "test test/load_unload.ts", exit_code: 0, diff --git a/tests/testdata/test/short-pass-jobs-flag-warning.out b/tests/testdata/test/short-pass-jobs-flag-warning.out deleted file mode 100644 index 0d9e1fd9b..000000000 --- a/tests/testdata/test/short-pass-jobs-flag-warning.out +++ /dev/null @@ -1,8 +0,0 @@ -⚠️ The `--jobs` flag is deprecated and will be removed in Deno 2.0. -Use the `--parallel` flag with possibly the `DENO_JOBS` environment variable instead. -Learn more at: https://docs.deno.com/runtime/manual/basics/env_variables -Check [WILDCARD]/test/short-pass.ts -./test/short-pass.ts => test ... ok ([WILDCARD]) - -ok | 1 passed | 0 failed ([WILDCARD]) - |