Skip to content

Commit

Permalink
Fixing tests on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
roblarsen committed Apr 9, 2024
1 parent 3f704ae commit 2dbc6c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion test/file_existence.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ function checkFiles(directory, expectedFiles) {
'**/.cache/**',
],
dot: true, // include hidden files
mark: true, // add a `/` character to directory matches
mark: true, // add a `/` character to directory matches,
windowsPathsNoEscape: false, //https://github.com/isaacs/node-glob/issues/467
});

// Check if all expected files are present in the
Expand Down

0 comments on commit 2dbc6c9

Please sign in to comment.