summaryrefslogtreecommitdiff
path: root/cli/tests/integration_tests.rs
diff options
context:
space:
mode:
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",