summaryrefslogtreecommitdiff
path: root/test_plugin/tests
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-06-18 17:54:55 +0200
committerGitHub <noreply@github.com>2020-06-18 11:54:55 -0400
commit90c5dcfe79cd010b429e775a3ebcb3c5d78fa6ff (patch)
tree461a23f50869c7cbe9bf621c60d11bd3eaaa8800 /test_plugin/tests
parenta2969ecd27645bafc7195baa7cfecbebfd8d2bf4 (diff)
chore(test): move testing utilities to test_util crate (#6360)
Diffstat (limited to 'test_plugin/tests')
-rw-r--r--test_plugin/tests/integration_tests.rs23
1 files changed, 1 insertions, 22 deletions
diff --git a/test_plugin/tests/integration_tests.rs b/test_plugin/tests/integration_tests.rs
index 8716048b1..53d1c2441 100644
--- a/test_plugin/tests/integration_tests.rs
+++ b/test_plugin/tests/integration_tests.rs
@@ -2,29 +2,8 @@
// cd test_plugin
// ../target/debug/deno run --unstable --allow-plugin tests/test.js debug
-use std::path::PathBuf;
use std::process::Command;
-
-fn target_dir() -> PathBuf {
- let current_exe = std::env::current_exe().unwrap();
- let target_dir = current_exe.parent().unwrap().parent().unwrap();
- println!("target_dir {}", target_dir.display());
- target_dir.into()
-}
-
-fn deno_exe_path() -> PathBuf {
- // Something like /Users/rld/src/deno/target/debug/deps/deno
- let mut p = target_dir().join("deno");
- if cfg!(windows) {
- p.set_extension("exe");
- }
- p
-}
-
-fn deno_cmd() -> Command {
- assert!(deno_exe_path().exists());
- Command::new(deno_exe_path())
-}
+use test_util::deno_cmd;
#[cfg(debug_assertions)]
const BUILD_VARIANT: &str = "debug";