From db287e216dd752bfcb3484cbfd93225e8463c363 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 3 Aug 2023 04:05:34 +0200 Subject: 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. --- cli/tests/integration/test_tests.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cli/tests') 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", }); -- cgit v1.2.3