Skip to content

Commit 7626d84

Browse files
committed
Test file which is in repo
1 parent 486671b commit 7626d84

1 file changed

Lines changed: 3 additions & 8 deletions

File tree

e2e/components/apps/V86.spec.ts

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,13 @@ import {
88
} from "e2e/functions";
99

1010
const APP = "V86";
11-
const DISK_IMAGE = "kolibri.img";
12-
const DISK_IMAGE_URL = `/Users/Public/Documents/Disk Images/${DISK_IMAGE}`;
11+
const DISK_IMAGE = "linux.bin";
12+
const DISK_IMAGE_URL = `/Users/Public/System/${DISK_IMAGE}`;
1313

1414
test.beforeEach(captureConsoleLogs("apps"));
1515
test.beforeEach(disableWallpaper);
1616

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

3430
await expect(page.locator(WINDOW_TITLEBAR_SELECTOR)).toContainText(
35-
`Virtual x86 - ${DISK_IMAGE}`,
36-
{ timeout: EMULATOR_BOOT_TIMEOUT }
31+
`Virtual x86 - ${DISK_IMAGE}`
3732
);
3833
});
3934
}

0 commit comments

Comments
 (0)