From 47fb3a6bb4bd24784dd3575a830aceb20e0c82c4 Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Sun, 7 Apr 2024 20:34:46 -0700 Subject: [PATCH] deWindows the largeDir --- test/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/index.js b/test/index.js index b57e3c3..732bc8b 100644 --- a/test/index.js +++ b/test/index.js @@ -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) {