summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-08-03 04:05:34 +0200
committerGitHub <noreply@github.com>2023-08-02 22:05:34 -0400
commitdb287e216dd752bfcb3484cbfd93225e8463c363 (patch)
tree11c5cf2e8be82fae5674949747e1b7691252ee3b /cli/tests
parent480894e5c8f9532a4c42477cdf5c058cb8e9e1e3 (diff)
refactor: use '--reporter' and '--junit-path' flags for 'deno test' (#20031)
This commit adds "--reporter" and "--junit-path" flags to "deno test" subcommand instead of using "--dot" and "--junit" flags.
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/integration/test_tests.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/tests/integration/test_tests.rs b/cli/tests/integration/test_tests.rs
index ec334aa6a..57acb723e 100644
--- a/cli/tests/integration/test_tests.rs
+++ b/cli/tests/integration/test_tests.rs
@@ -334,19 +334,19 @@ itest!(steps_ignored_steps {
});
itest!(steps_dot_passing_steps {
- args: "test --dot test/steps/passing_steps.ts",
+ args: "test --reporter=dot test/steps/passing_steps.ts",
exit_code: 0,
output: "test/steps/passing_steps.dot.out",
});
itest!(steps_dot_failing_steps {
- args: "test --dot test/steps/failing_steps.ts",
+ args: "test --reporter=dot test/steps/failing_steps.ts",
exit_code: 1,
output: "test/steps/failing_steps.dot.out",
});
itest!(steps_dot_ignored_steps {
- args: "test --dot test/steps/ignored_steps.ts",
+ args: "test --reporter=dot test/steps/ignored_steps.ts",
exit_code: 0,
output: "test/steps/ignored_steps.dot.out",
});