summaryrefslogtreecommitdiff
path: root/cli/tests/integration_tests.rs
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2020-06-12 16:58:04 +0100
committerGitHub <noreply@github.com>2020-06-12 11:58:04 -0400
commite613bfe47a3ebec076c82d038738904114ff2a7c (patch)
treec9deee488fc8dd3bf7fdcdd65be1f8677307a1d0 /cli/tests/integration_tests.rs
parent3eee9614732ed8636bb8ebbd6f6a13d44531df6c (diff)
feat: Add TestDefinition::only (#5793)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r--cli/tests/integration_tests.rs12
1 files changed, 9 insertions, 3 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index 89b46acf3..66308a499 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -1272,16 +1272,22 @@ itest!(_026_redirect_javascript {
http_server: true,
});
+itest!(deno_test {
+ args: "test test_runner_test.ts",
+ exit_code: 1,
+ output: "deno_test.out",
+});
+
itest!(deno_test_fail_fast {
args: "test --failfast test_runner_test.ts",
exit_code: 1,
output: "deno_test_fail_fast.out",
});
-itest!(deno_test {
- args: "test test_runner_test.ts",
+itest!(deno_test_only {
+ args: "test deno_test_only.ts",
exit_code: 1,
- output: "deno_test.out",
+ output: "deno_test_only.ts.out",
});
#[test]