Skip to content

Commit

Permalink
deWindows the largeDir
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Apr 8, 2024
1 parent ac1cc87 commit 47fb3a6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,9 @@ function suite(moduleName) {
expect(pathObjs.length).toEqual(100000);
}

stream.pipeline([globStream(largeDir + '/*.txt'), concat(assert)], done);
var glob = deWindows(largeDir) + '/*.txt';

stream.pipeline([globStream(glob), concat(assert)], done);
});

it('emits all objects (unordered) when given multiple absolute paths and no cwd', function (done) {
Expand Down

0 comments on commit 47fb3a6

Please sign in to comment.