From 523c6b11b4af49cb1f0dda4831d5e607174e96f9 Mon Sep 17 00:00:00 2001 From: Benjamin Coe Date: Mon, 10 Jun 2024 10:31:23 -0400 Subject: [PATCH] build: does minimatch 6 break things --- test/glob.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/test/glob.js b/test/glob.js index a744374..09252d5 100644 --- a/test/glob.js +++ b/test/glob.js @@ -10,11 +10,9 @@ async function testHelper(t, { options, args = [], label }) { const sync = e.globSync(...args).sort(); const pr = (await e.glob(...args)).sort(); - deepEqual(sync, 'batman'); - - // deepEqual(sync, pr, 'glob and globSync should find the same files'); - // deepEqual(sync, pr, 'glob and globSync should find the same files'); - // t.matchSnapshot(sync, label); + deepEqual(sync, pr, 'glob and globSync should find the same files'); + deepEqual(sync, pr, 'glob and globSync should find the same files'); + t.matchSnapshot(sync, label); } const cwd = path.resolve(__dirname, 'fixtures/glob');