summaryrefslogtreecommitdiff
path: root/tests/integration/test_tests.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-04-29 10:08:27 -0400
committerGitHub <noreply@github.com>2024-04-29 10:08:27 -0400
commitda52058a945999d486b07700d2834f027a65947c (patch)
treeb6031c274cbc36dcefc6d681473e366cdb208c89 /tests/integration/test_tests.rs
parentb02ffec37c73be8a73b95b33b32efa693e84e01b (diff)
chore: migrate bench, publish, and more itests to spec tests (#23584)
Diffstat (limited to 'tests/integration/test_tests.rs')
-rw-r--r--tests/integration/test_tests.rs21
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();