mirror of
https://github.com/BradGroux/veritas-kanban.git
synced 2026-08-28 02:44:59 +00:00
parent
4b84eccd1b
commit
98267c79ee
2 changed files with 4 additions and 2 deletions
|
|
@ -585,7 +585,7 @@ test.describe('v5 Mantine migration QA gate', () => {
|
|||
await page.keyboard.press('Escape');
|
||||
await expect(page.getByRole('dialog')).not.toBeVisible({ timeout: 5_000 });
|
||||
|
||||
await page.getByRole('button', { name: 'Settings', exact: true }).click();
|
||||
await page.getByRole('button', { name: 'Mobile settings', exact: true }).click();
|
||||
await expect(page.getByRole('dialog')).toBeVisible({ timeout: 5_000 });
|
||||
await assertNoHorizontalOverflow(page);
|
||||
await assertMobileTouchTargets(page);
|
||||
|
|
|
|||
|
|
@ -64,7 +64,9 @@ test.describe('Task Creation', () => {
|
|||
await expect(dialog).not.toBeVisible({ timeout: 15_000 });
|
||||
|
||||
// The new task should appear on the board (in the To Do column)
|
||||
const taskCard = page.locator('text=E2E Created Task');
|
||||
const taskCard = page
|
||||
.getByRole('region', { name: 'To Do' })
|
||||
.getByRole('heading', { name: 'E2E Created Task', exact: true });
|
||||
await expect(taskCard).toBeVisible({ timeout: 10_000 });
|
||||
|
||||
// Clean up — find the task ID via API and queue for deletion
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue