fix: add time out to try and fix issues

This commit is contained in:
tonyaellie
2025-09-01 10:18:08 +01:00
parent b5834818c9
commit d345dc6b71

View File

@@ -2,6 +2,7 @@ import { expect, test } from "@playwright/test";
test("valid login", async ({ page }) => {
await page.goto("/home");
await page.waitForTimeout(1000); // Wait for vue to load
await expect(page).toHaveURL("/");
await page.fill("input[type='text']", "demo@example.com");
await page.fill("input[type='password']", "demo");