mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-17 21:24:11 +00:00
feat: V2 ontime menu (#259)
This commit is contained in:
@@ -39,40 +39,4 @@ test.describe('pages routes are available', () => {
|
||||
await page.getByTestId('panel-info').click();
|
||||
});
|
||||
});
|
||||
|
||||
test.describe('client routes', () => {
|
||||
test('stage timer', async ({ page }) => {
|
||||
await page.goto('http://localhost:4001/timer');
|
||||
await page.getByTestId('timer-view').click();
|
||||
});
|
||||
test('clock', async ({ page }) => {
|
||||
await page.goto('http://localhost:4001/clock');
|
||||
await page.getByTestId('clock-view').click();
|
||||
});
|
||||
test('minimal timer', async ({ page }) => {
|
||||
await page.goto('http://localhost:4001/minimal');
|
||||
await page.getByTestId('minimal-timer').click();
|
||||
});
|
||||
test('backstage', async ({ page }) => {
|
||||
await page.goto('http://localhost:4001/backstage');
|
||||
await page.getByTestId('backstage-view').click();
|
||||
});
|
||||
test('public', async ({ page }) => {
|
||||
await page.goto('http://localhost:4001/public');
|
||||
await page.getByTestId('public-view').click();
|
||||
});
|
||||
test('pip', async ({ page }) => {
|
||||
await page.goto('http://localhost:4001/pip');
|
||||
await page.getByTestId('pip-view').click();
|
||||
});
|
||||
test('studio clock', async ({ page }) => {
|
||||
await page.goto('http://localhost:4001/studio');
|
||||
await page.getByTestId('studio-view').click();
|
||||
});
|
||||
test('lower', async ({ page }) => {
|
||||
await page.goto('http://localhost:4001/lower');
|
||||
const errorBoundary = await page.locator('data-test-id=error-container');
|
||||
await expect(errorBoundary).toHaveCount(0);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user