Skip to content

Commit

Permalink
build: does minimatch 6 break things
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe committed Jun 10, 2024
1 parent b215022 commit 523c6b1
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions test/glob.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 523c6b1

Please sign in to comment.