chore(tests): Remove unneeded continuation test

This commit is contained in:
Luan
2025-02-21 18:59:58 -03:00
parent c9328c59f9
commit 3243339b37

View File

@@ -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();