summaryrefslogtreecommitdiff
path: root/cli/tests/integration/mod.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-07-12 18:58:39 -0400
committerGitHub <noreply@github.com>2022-07-12 18:58:39 -0400
commit0c87dd1e9898d7ac93e274d3611ee491a107d47a (patch)
treef626332706ccd12e0719f9b84d6b234d5483659b /cli/tests/integration/mod.rs
parent76107649804e674268becd693b7b2a954eecb3da (diff)
perf: use emit from swc instead of tsc (#15118)
Diffstat (limited to 'cli/tests/integration/mod.rs')
-rw-r--r--cli/tests/integration/mod.rs46
1 files changed, 0 insertions, 46 deletions
diff --git a/cli/tests/integration/mod.rs b/cli/tests/integration/mod.rs
index 42ae24142..277b6a5d6 100644
--- a/cli/tests/integration/mod.rs
+++ b/cli/tests/integration/mod.rs
@@ -158,12 +158,6 @@ fn cache_test() {
.expect("Failed to spawn script");
assert!(output.status.success());
- let out = std::str::from_utf8(&output.stderr).unwrap();
- // Check if file and dependencies are written successfully
- assert!(out.contains("host.writeFile(\"deno://subdir/print_hello.js\")"));
- assert!(out.contains("host.writeFile(\"deno://subdir/mod2.js\")"));
- assert!(out.contains("host.writeFile(\"deno://006_url_imports.js\")"));
-
let prg = util::deno_exe_path();
let output = Command::new(&prg)
.env("DENO_DIR", deno_dir.path())
@@ -370,46 +364,6 @@ fn ts_no_recheck_on_redirect() {
}
#[test]
-fn ts_reload() {
- let hello_ts = util::testdata_path().join("002_hello.ts");
- assert!(hello_ts.is_file());
-
- let deno_dir = TempDir::new();
- let mut initial = util::deno_cmd_with_deno_dir(&deno_dir)
- .current_dir(util::testdata_path())
- .arg("cache")
- .arg("--check=all")
- .arg(&hello_ts)
- .spawn()
- .expect("failed to spawn script");
- let status_initial =
- initial.wait().expect("failed to wait for child process");
- assert!(status_initial.success());
-
- let output = util::deno_cmd_with_deno_dir(&deno_dir)
- .current_dir(util::testdata_path())
- .arg("cache")
- .arg("--check=all")
- .arg("--reload")
- .arg("-L")
- .arg("debug")
- .arg(&hello_ts)
- .output()
- .expect("failed to spawn script");
-
- // check the output of the the bundle program.
- let output_path = hello_ts.canonicalize().unwrap();
- assert!(
- dbg!(std::str::from_utf8(&output.stderr).unwrap().trim()).contains(
- &format!(
- "host.getSourceFile(\"{}\", Latest)",
- url::Url::from_file_path(&output_path).unwrap().as_str()
- )
- )
- );
-}
-
-#[test]
fn timeout_clear() {
// https://github.com/denoland/deno/issues/7599