diff options
Diffstat (limited to 'tests/integration/test_tests.rs')
-rw-r--r-- | tests/integration/test_tests.rs | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/integration/test_tests.rs b/tests/integration/test_tests.rs index 2bf2b3109..fe9eb83c5 100644 --- a/tests/integration/test_tests.rs +++ b/tests/integration/test_tests.rs @@ -584,21 +584,6 @@ itest!(package_json_basic { exit_code: 0, }); -itest!(test_lock { - args: "test", - http_server: true, - cwd: Some("lockfile/basic"), - exit_code: 10, - output: "lockfile/basic/fail.out", -}); - -itest!(test_no_lock { - args: "test --no-lock", - http_server: true, - cwd: Some("lockfile/basic"), - output: "lockfile/basic/test.nolock.out", -}); - itest!(test_replace_timers { args: "test test/replace_timers.js", output: "test/replace_timers.js.out", @@ -676,12 +661,6 @@ fn conditionally_loads_type_graph() { assert_not_contains!(output.combined_output(), "type_reference.d.ts"); } -itest!(test_include_relative_pattern_dot_slash { - args: "test", - output: "test/relative_pattern_dot_slash/output.out", - cwd: Some("test/relative_pattern_dot_slash"), -}); - #[test] fn opt_out_top_level_exclude_via_test_unexclude() { let context = TestContextBuilder::new().use_temp_cwd().build(); |