diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-04-14 18:50:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-14 18:50:58 -0400 |
commit | 1bca994143b4812979a264f1105ae36de1efb982 (patch) | |
tree | 2d58c6421bb69b04235a80e78728cfa9de1fe16e /cli/tests/node_compat/common.ts | |
parent | 0a67a3965fd7c0041b818a5cb1068dee19ae25b1 (diff) |
chore: fix running node tests in parallel on Windows (#18711)
Diffstat (limited to 'cli/tests/node_compat/common.ts')
-rw-r--r-- | cli/tests/node_compat/common.ts | 4 |
1 files changed, 1 insertions, 3 deletions
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[], |