import { test, expect } from '@playwright/test'; import { switchTab, waitForHtmx } from './helpers'; test.describe('Watchlist', () => { test('should display watchlist tab', async ({ page }) => { await page.goto('/web'); await switchTab(page, 'Watchlist'); await page.locator('#tab-watchlist').waitFor({ state: 'visible', timeout: 5000 }); await expect(page.locator('#tab-watchlist')).toBeVisible(); }); });