From 1bca994143b4812979a264f1105ae36de1efb982 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Fri, 14 Apr 2023 18:50:58 -0400 Subject: chore: fix running node tests in parallel on Windows (#18711) --- cli/tests/node_compat/common.ts | 4 +--- cli/tests/node_compat/test.ts | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'cli') diff --git a/cli/tests/node_compat/common.ts b/cli/tests/node_compat/common.ts index e774991f6..e9cfe3191 100644 --- a/cli/tests/node_compat/common.ts +++ b/cli/tests/node_compat/common.ts @@ -54,9 +54,7 @@ export function getPathsFromTestSuites(suites: TestSuites): string[] { return testPaths; } -const PARALLEL_PATTERN = Deno.build.os == "windows" - ? /^parallel[/\/]/ - : /^parallel\//; +const PARALLEL_PATTERN = /^parallel[\/\\]/; export function partitionParallelTestPaths( testPaths: string[], diff --git a/cli/tests/node_compat/test.ts b/cli/tests/node_compat/test.ts index 896b88bcf..17c5bd029 100644 --- a/cli/tests/node_compat/test.ts +++ b/cli/tests/node_compat/test.ts @@ -108,7 +108,7 @@ async function runTest(t: Deno.TestContext, path: string): Promise { ${stderrOutput} You can repeat only this test with the command: - + ${repeatCmd} `; console.log(msg); -- cgit v1.2.3