From f1ba0f2a9c86cafd2ffb05334e4a01af92a05cbd Mon Sep 17 00:00:00 2001 From: Benjamin Coe Date: Mon, 10 Jun 2024 10:41:43 -0400 Subject: [PATCH] build: does minimatch 6 break things --- test/glob.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test/glob.js b/test/glob.js index 59fe1cc..da58594 100644 --- a/test/glob.js +++ b/test/glob.js @@ -10,7 +10,6 @@ async function testHelper(t, { options, args = [], label }) { const sync = e.globSync(...args).sort(); const pr = (await e.glob(...args)).sort(); - 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); }