diff options
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 2 |
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"); |