From dcd9868d23d359daaad3f9c23d4503a4237e29b2 Mon Sep 17 00:00:00 2001 From: Victor Engmark Date: Mon, 12 Feb 2024 13:23:04 +1300 Subject: [PATCH] chore: Uncomment test Should not have been commented. --- src/utils/__test__/filter.test.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/utils/__test__/filter.test.ts b/src/utils/__test__/filter.test.ts index 05af269e..ba297c79 100644 --- a/src/utils/__test__/filter.test.ts +++ b/src/utils/__test__/filter.test.ts @@ -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']);