From 4b84bb4f064e301e295cb020d7ee1ea0430b7278 Mon Sep 17 00:00:00 2001 From: Nicola Miotto Date: Mon, 14 Jul 2025 16:01:37 +0200 Subject: [PATCH] feat: add e2e for videos with no caption --- src/commands/e2e.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/commands/e2e.ts b/src/commands/e2e.ts index adb5e95..97c1798 100644 --- a/src/commands/e2e.ts +++ b/src/commands/e2e.ts @@ -120,6 +120,12 @@ const KB_TEST_SCENARIOS: Record = { url: 'https://youtu.be/P9UPOym_tLQ', expectedOutcome: 'success', description: 'YouTube video with closed captions (should succeed)' + }, + { + name: 'without_cc', + url: 'https://youtube.com/shorts/paeptBU0Hf4?si=lc1WrTJgFabOWdRL', + expectedOutcome: 'success', + description: 'YouTube video without closed captions (should succeed)' } ] };