We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfc143a commit b955d03Copy full SHA for b955d03
tests/node_compat/test.ts
@@ -19,6 +19,7 @@ import { magenta } from "@std/fmt/colors";
19
import { pooledMap } from "@std/async/pool";
20
import { dirname, fromFileUrl, join } from "@std/path";
21
import { assertEquals, fail } from "@std/assert";
22
+import { distinct } from "@std/collections";
23
import {
24
config,
25
getPathsFromTestSuites,
@@ -36,6 +37,9 @@ const testPaths = partitionParallelTestPaths(
36
37
getPathsFromTestSuites(config.ignore),
38
),
39
);
40
+testPaths.sequential = distinct(testPaths.sequential);
41
+testPaths.parallel = distinct(testPaths.parallel);
42
+
43
const cwd = new URL(".", import.meta.url);
44
const windowsIgnorePaths = new Set(
45
getPathsFromTestSuites(config.windowsIgnore),
0 commit comments