Skip to content

Commit 2dbc6c9

Browse files
committed
Fixing tests on Windows
1 parent 3f704ae commit 2dbc6c9

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/file_existence.mjs

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ function checkFiles(directory, expectedFiles) {
5656
'**/.cache/**',
5757
],
5858
dot: true, // include hidden files
59-
mark: true, // add a `/` character to directory matches
59+
mark: true, // add a `/` character to directory matches,
60+
windowsPathsNoEscape: false, //https://github.com/isaacs/node-glob/issues/467
6061
});
6162

6263
// Check if all expected files are present in the

0 commit comments

Comments
 (0)