From 7aa8e9c0351eabe822916394942c576381a13c6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 15 Nov 2022 17:21:25 +0100 Subject: test: don't use remote std for tests (#16631) --- cli/tests/integration/coverage_tests.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cli/tests/integration/coverage_tests.rs') diff --git a/cli/tests/integration/coverage_tests.rs b/cli/tests/integration/coverage_tests.rs index 251577c4b..1ee3af371 100644 --- a/cli/tests/integration/coverage_tests.rs +++ b/cli/tests/integration/coverage_tests.rs @@ -211,6 +211,7 @@ fn no_snaps_included(test_name: &str, extension: &str) { .current_dir(util::testdata_path()) .arg("coverage") .arg("--unstable") + .arg("--include=no_snaps_included.ts") .arg(format!("{}/", tempdir.to_str().unwrap())) .stdout(std::process::Stdio::piped()) .stderr(std::process::Stdio::piped()) @@ -260,6 +261,7 @@ fn no_transpiled_lines() { let output = util::deno_cmd_with_deno_dir(&deno_dir) .current_dir(util::testdata_path()) .arg("coverage") + .arg("--include=no_transpiled_lines/index.ts") .arg(format!("{}/", tempdir.to_str().unwrap())) .stdout(std::process::Stdio::piped()) .stderr(std::process::Stdio::piped()) @@ -287,6 +289,7 @@ fn no_transpiled_lines() { .current_dir(util::testdata_path()) .arg("coverage") .arg("--lcov") + .arg("--include=no_transpiled_lines/index.ts") .arg(format!("{}/", tempdir.to_str().unwrap())) .stdout(std::process::Stdio::piped()) .stderr(std::process::Stdio::inherit()) -- cgit v1.2.3