diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-03 01:26:42 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-02 17:26:42 +0200 |
commit | 4c35668d90469c6596057e3e1596d86324a1cc3c (patch) | |
tree | a72412d52e617a6b9b7806ba03ff4e25f18c8641 /tests/integration/test_tests.rs | |
parent | 977f8137f3131024e6dbdeb695ded1d33a99d650 (diff) |
BREAKING: remove `--jobs` flag (#25336)
Diffstat (limited to 'tests/integration/test_tests.rs')
-rw-r--r-- | tests/integration/test_tests.rs | 12 |
1 files changed, 0 insertions, 12 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, |