Skip to content

Commit

Permalink
chore: Uncomment test
Browse files Browse the repository at this point in the history
Should not have been commented.
  • Loading branch information
l0b0 committed Feb 12, 2024
1 parent 3b5eb17 commit dcd9868
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/utils/__test__/filter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ describe('AsyncFilter', () => {
};
}

// it('should include all', async () => {
// const gen = makeGenerator(['a.tiff', 'b.tiff', 'c.tiff']);
// const result = await fsa.toArray(asyncFilter(gen()));
// assert.equal(result.length, 3);
// });
it('should include all', async () => {
const gen = makeGenerator(['a.tiff', 'b.tiff', 'c.tiff']);
const result = await fsa.toArray(asyncFilter(gen()));
assert.equal(result.length, 3);
});

it('should match include exact', async () => {
const gen = makeGenerator(['a.tiff', 'b.tiff', 'c.tiff']);
Expand Down

0 comments on commit dcd9868

Please sign in to comment.