diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2021-08-11 10:20:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-11 10:20:47 -0400 |
commit | 15a763152f9d392cb80692262f8de5ef8ae15495 (patch) | |
tree | fcd1a59777f95920bf3502519983d6cc0d882a9a /cli/tests/integration/install_tests.rs | |
parent | a0285e2eb88f6254f6494b0ecd1878db3a3b2a58 (diff) |
chore: move test files to testdata directory (#11601)
Diffstat (limited to 'cli/tests/integration/install_tests.rs')
-rw-r--r-- | cli/tests/integration/install_tests.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/tests/integration/install_tests.rs b/cli/tests/integration/install_tests.rs index e5229df8f..ff93c157f 100644 --- a/cli/tests/integration/install_tests.rs +++ b/cli/tests/integration/install_tests.rs @@ -16,7 +16,7 @@ fn installer_test_local_module_run() { .arg("echo_test") .arg("--root") .arg(temp_dir.path()) - .arg(util::tests_path().join("echo.ts")) + .arg(util::testdata_path().join("echo.ts")) .arg("hello") .spawn() .unwrap() @@ -47,13 +47,13 @@ fn installer_test_remote_module_run() { let bin_dir = temp_dir.path().join("bin"); std::fs::create_dir(&bin_dir).unwrap(); let status = util::deno_cmd() - .current_dir(util::root_path()) + .current_dir(util::testdata_path()) .arg("install") .arg("--name") .arg("echo_test") .arg("--root") .arg(temp_dir.path()) - .arg("http://localhost:4545/cli/tests/echo.ts") + .arg("http://localhost:4545/echo.ts") .arg("hello") .spawn() .unwrap() |