diff options
Diffstat (limited to 'cli/tests/integration/compile_tests.rs')
-rw-r--r-- | cli/tests/integration/compile_tests.rs | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/cli/tests/integration/compile_tests.rs b/cli/tests/integration/compile_tests.rs index 82a98115a..dad607544 100644 --- a/cli/tests/integration/compile_tests.rs +++ b/cli/tests/integration/compile_tests.rs @@ -2,12 +2,12 @@ use std::fs::File; use std::process::Command; -use tempfile::TempDir; use test_util as util; +use test_util::TempDir; #[test] fn compile() { - let dir = TempDir::new().unwrap(); + let dir = TempDir::new(); let exe = if cfg!(windows) { dir.path().join("welcome.exe") } else { @@ -38,7 +38,7 @@ fn compile() { #[test] fn standalone_args() { - let dir = TempDir::new().unwrap(); + let dir = TempDir::new(); let exe = if cfg!(windows) { dir.path().join("args.exe") } else { @@ -74,7 +74,7 @@ fn standalone_args() { #[test] fn standalone_error() { - let dir = TempDir::new().unwrap(); + let dir = TempDir::new(); let exe = if cfg!(windows) { dir.path().join("error.exe") } else { @@ -116,7 +116,7 @@ fn standalone_error() { #[test] fn standalone_error_module_with_imports() { - let dir = TempDir::new().unwrap(); + let dir = TempDir::new(); let exe = if cfg!(windows) { dir.path().join("error.exe") } else { @@ -156,7 +156,7 @@ fn standalone_error_module_with_imports() { #[test] fn standalone_load_datauri() { - let dir = TempDir::new().unwrap(); + let dir = TempDir::new(); let exe = if cfg!(windows) { dir.path().join("load_datauri.exe") } else { @@ -221,7 +221,7 @@ fn standalone_follow_redirects() { #[test] fn standalone_compiler_ops() { - let dir = TempDir::new().unwrap(); + let dir = TempDir::new(); let exe = if cfg!(windows) { dir.path().join("standalone_compiler_ops.exe") } else { @@ -253,7 +253,7 @@ fn standalone_compiler_ops() { #[test] fn compile_with_directory_output_flag() { - let dir = TempDir::new().unwrap(); + let dir = TempDir::new(); let output_path = if cfg!(windows) { dir.path().join(r"args\random\") } else { @@ -291,7 +291,7 @@ fn compile_with_directory_output_flag() { #[test] fn compile_with_file_exists_error() { - let dir = TempDir::new().unwrap(); + let dir = TempDir::new(); let output_path = if cfg!(windows) { dir.path().join(r"args\") } else { @@ -326,7 +326,7 @@ fn compile_with_file_exists_error() { #[test] fn compile_with_directory_exists_error() { - let dir = TempDir::new().unwrap(); + let dir = TempDir::new(); let exe = if cfg!(windows) { dir.path().join("args.exe") } else { @@ -360,7 +360,7 @@ fn compile_with_directory_exists_error() { #[test] fn compile_with_conflict_file_exists_error() { - let dir = TempDir::new().unwrap(); + let dir = TempDir::new(); let exe = if cfg!(windows) { dir.path().join("args.exe") } else { @@ -398,7 +398,7 @@ fn compile_with_conflict_file_exists_error() { #[test] fn compile_and_overwrite_file() { - let dir = TempDir::new().unwrap(); + let dir = TempDir::new(); let exe = if cfg!(windows) { dir.path().join("args.exe") } else { @@ -436,7 +436,7 @@ fn compile_and_overwrite_file() { #[test] fn standalone_runtime_flags() { - let dir = TempDir::new().unwrap(); + let dir = TempDir::new(); let exe = if cfg!(windows) { dir.path().join("flags.exe") } else { @@ -475,7 +475,7 @@ fn standalone_runtime_flags() { #[test] fn standalone_import_map() { - let dir = TempDir::new().unwrap(); + let dir = TempDir::new(); let exe = if cfg!(windows) { dir.path().join("import_map.exe") } else { @@ -510,7 +510,7 @@ fn standalone_import_map() { #[test] // https://github.com/denoland/deno/issues/12670 fn skip_rebundle() { - let dir = TempDir::new().unwrap(); + let dir = TempDir::new(); let exe = if cfg!(windows) { dir.path().join("hello_world.exe") } else { |