Add live show docs and smoke tests
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-01-05 19:42:58 +01:00
parent 53eb560aa5
commit 3f3061a899
10 changed files with 230 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
import { test, expectFixture as expect, dismissConsentBanner } from '../helpers/test-fixtures';
const liveShowToken = process.env.E2E_LIVE_SHOW_TOKEN;
test.describe('Live Show Player', () => {
test('loads the player shell', async ({ page }) => {
test.skip(!liveShowToken, 'Set E2E_LIVE_SHOW_TOKEN to a valid live show token.');
await page.goto(`/show/${liveShowToken}`);
await dismissConsentBanner(page);
await expect(page.getByRole('button', { name: /Pause|Play|Weiter/i })).toBeVisible();
});
});