Skip to content

Commit

Permalink
skip on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Apr 8, 2024
1 parent 47fb3a6 commit e7993cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -370,9 +370,9 @@ function suite(moduleName) {
stream.pipeline([globStream(globs, { cwd: dir }), concat(assert)], done);
});

// By default, we only run this in CI since it takes so long
// By default, we only run this in non-Windows CI since it takes so long
it('does not stack overflow if there are an insane amount of files', function (done) {
if (process.env.CI !== "true") {
if (process.env.CI !== "true" || os.platform() === 'win32') {
this.skip();
}

Expand Down

0 comments on commit e7993cb

Please sign in to comment.