summaryrefslogtreecommitdiff
path: root/cli/tests/integration_tests.rs
diff options
context:
space:
mode:
authorKevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com>2020-02-08 00:49:55 -0800
committerGitHub <noreply@github.com>2020-02-08 09:49:55 +0100
commit619a24390ff15d5ea5e577a4d0391823f94e8592 (patch)
tree25be718dce5df73964b70c7251a345243d87067d /cli/tests/integration_tests.rs
parentf650c3edb3081ac0433b338c0c99418171656dd1 (diff)
install: add --force flag and remove yes/no prompt (#3917)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r--cli/tests/integration_tests.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index c7b2a4b4e..ac00a04c4 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -112,6 +112,7 @@ fn installer_test_local_module_run() {
"echo_test",
&local_module_str,
vec!["hello".to_string()],
+ false,
)
.expect("Failed to install");
let mut file_path = temp_dir.path().join("echo_test");
@@ -159,6 +160,7 @@ fn installer_test_remote_module_run() {
"echo_test",
"http://localhost:4545/cli/tests/echo.ts",
vec!["hello".to_string()],
+ false,
)
.expect("Failed to install");
let mut file_path = temp_dir.path().join("echo_test");