summaryrefslogtreecommitdiff
path: root/cli/tests/integration_tests.rs
diff options
context:
space:
mode:
authorCasper Beyer <caspervonb@pm.me>2020-12-21 21:04:25 +0800
committerGitHub <noreply@github.com>2020-12-21 14:04:25 +0100
commit3078fcf55a8aa04d26316ab353d84f2c9512bd47 (patch)
tree811793f89b88c7bb6294c92583237e7fb03ca46e /cli/tests/integration_tests.rs
parentd5ee168468a431140d2903e0a03ea0eeea491874 (diff)
feat(unstable): record raw coverage into a directory (#8642)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r--cli/tests/integration_tests.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index 302e808fa..5696f1f5b 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -3310,6 +3310,18 @@ itest!(deno_test_coverage {
exit_code: 0,
});
+itest!(deno_test_coverage_explicit {
+ args: "test --coverage=.test_coverage --unstable test_coverage.ts",
+ output: "test_coverage.out",
+ exit_code: 0,
+});
+
+itest!(deno_test_run_test_coverage {
+ args: "test --allow-all --coverage --unstable test_run_test_coverage.ts",
+ output: "test_run_test_coverage.out",
+ exit_code: 0,
+});
+
itest!(deno_lint {
args: "lint --unstable lint/file1.js lint/file2.ts lint/ignored_file.ts",
output: "lint/expected.out",