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');