Skip to content

Commit 523c6b1

Browse files
committed
build: does minimatch 6 break things
1 parent b215022 commit 523c6b1

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

test/glob.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,9 @@ async function testHelper(t, { options, args = [], label }) {
1010
const sync = e.globSync(...args).sort();
1111
const pr = (await e.glob(...args)).sort();
1212

13-
deepEqual(sync, 'batman');
14-
15-
// deepEqual(sync, pr, 'glob and globSync should find the same files');
16-
// deepEqual(sync, pr, 'glob and globSync should find the same files');
17-
// t.matchSnapshot(sync, label);
13+
deepEqual(sync, pr, 'glob and globSync should find the same files');
14+
deepEqual(sync, pr, 'glob and globSync should find the same files');
15+
t.matchSnapshot(sync, label);
1816
}
1917

2018
const cwd = path.resolve(__dirname, 'fixtures/glob');

0 commit comments

Comments
 (0)