summaryrefslogtreecommitdiff
path: root/cli/tests/install_tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/install_tests.rs')
-rw-r--r--cli/tests/install_tests.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/tests/install_tests.rs b/cli/tests/install_tests.rs
index f0714e200..4b6efc924 100644
--- a/cli/tests/install_tests.rs
+++ b/cli/tests/install_tests.rs
@@ -55,12 +55,12 @@ mod install {
if cfg!(windows) {
assert_contains!(
content,
- r#""run" "--check" "http://localhost:4545/echo.ts""#
+ r#""run" "--check" "--no-config" "http://localhost:4545/echo.ts""#
);
} else {
assert_contains!(
content,
- r#"run --check 'http://localhost:4545/echo.ts'"#
+ r#"run --check --no-config 'http://localhost:4545/echo.ts'"#
);
}
@@ -121,12 +121,12 @@ mod install {
if cfg!(windows) {
assert_contains!(
content,
- r#""run" "--check" "http://localhost:4545/echo.ts""#
+ r#""run" "--check" "--no-config" "http://localhost:4545/echo.ts""#
);
} else {
assert_contains!(
content,
- r#"run --check 'http://localhost:4545/echo.ts'"#
+ r#"run --check --no-config 'http://localhost:4545/echo.ts'"#
);
}
}