From 3243339b37486c49caed4f7a4148d094f7f768e3 Mon Sep 17 00:00:00 2001 From: Luan Date: Fri, 21 Feb 2025 18:59:58 -0300 Subject: [PATCH] chore(tests): Remove unneeded continuation test --- test/main.test.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/main.test.ts b/test/main.test.ts index 8be24d2dd..fcc89f913 100644 --- a/test/main.test.ts +++ b/test/main.test.ts @@ -393,13 +393,6 @@ describe('YouTube.js Tests', () => { expect(home.sections?.length).toBeGreaterThan(0); }); - test('HomeFeed#getContinuation', async () => { - const incremental_continuation = await home.getContinuation(); - expect(incremental_continuation).toBeDefined(); - expect(incremental_continuation.sections).toBeDefined(); - expect(incremental_continuation.sections?.length).toBeGreaterThan(0); - }); - test('HomeFeed#applyFilter', async () => { home = await home.applyFilter(home.filters[1]); expect(home).toBeDefined();