From e7993cbc9ca22884701308f39daa696c9b92260b Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Sun, 7 Apr 2024 21:17:38 -0700 Subject: [PATCH] skip on windows --- test/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/index.js b/test/index.js index 732bc8b..4943370 100644 --- a/test/index.js +++ b/test/index.js @@ -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(); }