From c436e7589eae57bdd348ceb69dc8cfca4bdd7a7f Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Tue, 7 Jan 2025 19:26:31 +0300 Subject: [PATCH] Increase timeout for the test --- tests/commands/epg/grab.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/commands/epg/grab.test.ts b/tests/commands/epg/grab.test.ts index 1fdcf80f..d580f265 100644 --- a/tests/commands/epg/grab.test.ts +++ b/tests/commands/epg/grab.test.ts @@ -54,7 +54,7 @@ describe('epg:grab', () => { const expected = await zip.decompress(fs.readFileSync('tests/__data__/output/guide.xml.gz')) const result = await zip.decompress(fs.readFileSync('tests/__data__/expected/guide.xml.gz')) expect(expected).toEqual(result) - }) + }, 30000) it('can grab epg with wildcard as output', () => { const cmd = `${ENV_VAR} npm run grab --- --channels=tests/__data__/input/epg-grab/sites/example.com/example.com.channels.xml --output=tests/__data__/output/guides/{lang}/{site}.xml`