summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cli/tests/integration/coverage_tests.rs59
-rw-r--r--cli/tests/testdata/coverage/no_snaps_included/__snapshots__/no_snaps_included_test.ts.snap3
-rw-r--r--cli/tests/testdata/coverage/no_snaps_included/expected.out1
-rw-r--r--cli/tests/testdata/coverage/no_snaps_included/no_snaps_included.ts3
-rw-r--r--cli/tests/testdata/coverage/no_snaps_included/no_snaps_included_test.ts11
-rw-r--r--cli/tools/coverage/mod.rs3
6 files changed, 79 insertions, 1 deletions
diff --git a/cli/tests/integration/coverage_tests.rs b/cli/tests/integration/coverage_tests.rs
index 628aaab7f..6e6e2a681 100644
--- a/cli/tests/integration/coverage_tests.rs
+++ b/cli/tests/integration/coverage_tests.rs
@@ -19,6 +19,11 @@ fn final_blankline() {
run_coverage_text("final_blankline", "js");
}
+#[test]
+fn no_snaps() {
+ no_snaps_included("no_snaps_included", "ts");
+}
+
fn run_coverage_text(test_name: &str, extension: &str) {
let deno_dir = TempDir::new();
let tempdir = TempDir::new();
@@ -177,3 +182,57 @@ fn multifile_coverage() {
assert!(output.status.success());
}
+
+fn no_snaps_included(test_name: &str, extension: &str) {
+ let deno_dir = TempDir::new();
+ let tempdir = TempDir::new();
+ let tempdir = tempdir.path().join("cov");
+
+ let status = util::deno_cmd_with_deno_dir(&deno_dir)
+ .current_dir(util::testdata_path())
+ .arg("test")
+ .arg("--quiet")
+ .arg("--unstable")
+ .arg("--allow-read")
+ .arg(format!("--coverage={}", tempdir.to_str().unwrap()))
+ .arg(format!(
+ "coverage/no_snaps_included/{}_test.{}",
+ test_name, extension
+ ))
+ .stdout(std::process::Stdio::piped())
+ .stderr(std::process::Stdio::piped())
+ .status()
+ .unwrap();
+
+ assert!(status.success());
+
+ let output = util::deno_cmd_with_deno_dir(&deno_dir)
+ .current_dir(util::testdata_path())
+ .arg("coverage")
+ .arg("--unstable")
+ .arg(format!("{}/", tempdir.to_str().unwrap()))
+ .stdout(std::process::Stdio::piped())
+ .stderr(std::process::Stdio::piped())
+ .output()
+ .unwrap();
+
+ // Verify there's no "Check" being printed
+ assert!(output.stderr.is_empty());
+
+ let actual =
+ util::strip_ansi_codes(std::str::from_utf8(&output.stdout).unwrap())
+ .to_string();
+
+ let expected = fs::read_to_string(
+ util::testdata_path().join("coverage/no_snaps_included/expected.out"),
+ )
+ .unwrap();
+
+ if !util::wildcard_match(&expected, &actual) {
+ println!("OUTPUT\n{}\nOUTPUT", actual);
+ println!("EXPECTED\n{}\nEXPECTED", expected);
+ panic!("pattern match failed");
+ }
+
+ assert!(output.status.success());
+}
diff --git a/cli/tests/testdata/coverage/no_snaps_included/__snapshots__/no_snaps_included_test.ts.snap b/cli/tests/testdata/coverage/no_snaps_included/__snapshots__/no_snaps_included_test.ts.snap
new file mode 100644
index 000000000..b7bfe6b8b
--- /dev/null
+++ b/cli/tests/testdata/coverage/no_snaps_included/__snapshots__/no_snaps_included_test.ts.snap
@@ -0,0 +1,3 @@
+export const snapshot = {};
+
+snapshot[`snapshot excluded from coverage 1`] = `{}`;
diff --git a/cli/tests/testdata/coverage/no_snaps_included/expected.out b/cli/tests/testdata/coverage/no_snaps_included/expected.out
new file mode 100644
index 000000000..83979a752
--- /dev/null
+++ b/cli/tests/testdata/coverage/no_snaps_included/expected.out
@@ -0,0 +1 @@
+cover [WILDCARD]/no_snaps_included/no_snaps_included.ts ... 100.000% (3/3)
diff --git a/cli/tests/testdata/coverage/no_snaps_included/no_snaps_included.ts b/cli/tests/testdata/coverage/no_snaps_included/no_snaps_included.ts
new file mode 100644
index 000000000..2d844150b
--- /dev/null
+++ b/cli/tests/testdata/coverage/no_snaps_included/no_snaps_included.ts
@@ -0,0 +1,3 @@
+export function truth() {
+ return true;
+}
diff --git a/cli/tests/testdata/coverage/no_snaps_included/no_snaps_included_test.ts b/cli/tests/testdata/coverage/no_snaps_included/no_snaps_included_test.ts
new file mode 100644
index 000000000..6dd92c235
--- /dev/null
+++ b/cli/tests/testdata/coverage/no_snaps_included/no_snaps_included_test.ts
@@ -0,0 +1,11 @@
+import { assertSnapshot } from "https://deno.land/std@0.136.0/testing/snapshot.ts";
+import { truth } from "./no_snaps_included.ts";
+
+Deno.test("the truth", () => {
+ truth();
+});
+
+// Create snapshot in .snap file, but it shouldn't be in the coverage output
+Deno.test("snapshot excluded from coverage", async (context) => {
+ await assertSnapshot(context, {});
+});
diff --git a/cli/tools/coverage/mod.rs b/cli/tools/coverage/mod.rs
index 338779583..d68071085 100644
--- a/cli/tools/coverage/mod.rs
+++ b/cli/tools/coverage/mod.rs
@@ -583,7 +583,8 @@ fn filter_coverages(
.filter(|e| {
let is_internal = e.url.starts_with("deno:")
|| e.url.ends_with("__anonymous__")
- || e.url.ends_with("$deno$test.js");
+ || e.url.ends_with("$deno$test.js")
+ || e.url.ends_with(".snap");
let is_included = include.iter().any(|p| p.is_match(&e.url));
let is_excluded = exclude.iter().any(|p| p.is_match(&e.url));