Skip to content

Commit 486671b

Browse files
committed
Allow more time to test loading V86
1 parent 62f9a9f commit 486671b

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

e2e/components/apps/V86.spec.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ const DISK_IMAGE_URL = `/Users/Public/Documents/Disk Images/${DISK_IMAGE}`;
1414
test.beforeEach(captureConsoleLogs("apps"));
1515
test.beforeEach(disableWallpaper);
1616

17+
const EMULATOR_BOOT_TIMEOUT = 30_000;
18+
1719
test.describe("loads disk image", () => {
20+
test.describe.configure({ timeout: EMULATOR_BOOT_TIMEOUT });
21+
1822
for (const deviceMemory of [0.25, 8, 32]) {
1923
test(`with deviceMemory of ${deviceMemory} GB`, async ({ page }) => {
2024
await page.addInitScript((memory) => {
@@ -28,7 +32,8 @@ test.describe("loads disk image", () => {
2832
await windowsAreVisible({ page });
2933

3034
await expect(page.locator(WINDOW_TITLEBAR_SELECTOR)).toContainText(
31-
`Virtual x86 - ${DISK_IMAGE}`
35+
`Virtual x86 - ${DISK_IMAGE}`,
36+
{ timeout: EMULATOR_BOOT_TIMEOUT }
3237
);
3338
});
3439
}

0 commit comments

Comments
 (0)