From 196e2b27e93e94090600fc7c00ae809e3160c27d Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Tue, 17 Mar 2026 03:30:41 +0300 Subject: [PATCH] Update grab.test.ts --- tests/commands/epg/grab.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/commands/epg/grab.test.ts b/tests/commands/epg/grab.test.ts index 337c0161..b2a965c3 100644 --- a/tests/commands/epg/grab.test.ts +++ b/tests/commands/epg/grab.test.ts @@ -13,7 +13,7 @@ beforeEach(() => { describe('epg:grab', () => { it('can grab epg by site name', () => { - const cmd = `${ENV_VAR} npm run grab --- --site=example.com --output="${path.resolve( + const cmd = `${ENV_VAR} npm run grab --- --sites=example.com --output="${path.resolve( 'tests/__data__/output/guides/base.guide.xml' )}"` const stdout = execSync(cmd, { encoding: 'utf8' }) @@ -25,7 +25,7 @@ describe('epg:grab', () => { }) it('can grab epg with curl option', () => { - const cmd = `${ENV_VAR} npm run grab --- --site=example.com --curl --output="${path.resolve( + const cmd = `${ENV_VAR} npm run grab --- --sites=example.com --curl --output="${path.resolve( 'tests/__data__/output/guides/curl.guide.xml' )}"` const stdout = execSync(cmd, { encoding: 'utf8' })