remove info panel (#721)

* refactor: remove info panel

* chore: update tests
This commit is contained in:
Carlos Valente
2024-01-19 14:08:32 +01:00
committed by GitHub
parent 3c1be1fc10
commit fc5800bc21
9 changed files with 5 additions and 183 deletions
-5
View File
@@ -13,7 +13,6 @@ test.describe('pages routes are available', () => {
await expect(page.getByTestId('panel-rundown')).toBeVisible();
await expect(page.getByTestId('panel-timer-control')).toBeVisible();
await expect(page.getByTestId('panel-messages-control')).toBeVisible();
await expect(page.getByTestId('panel-info')).toBeVisible();
await page.screenshot({ path: 'automated-screenshots/editor.png' });
});
@@ -99,9 +98,5 @@ test.describe('pages routes are available', () => {
await page.goto('http://localhost:4001/messagecontrol');
await expect(page.getByTestId('panel-messages-control')).toBeVisible();
});
test('info', async ({ page }) => {
await page.goto('http://localhost:4001/info');
await expect(page.getByTestId('panel-info')).toBeVisible();
});
});
});