File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,7 +14,11 @@ const DISK_IMAGE_URL = `/Users/Public/Documents/Disk Images/${DISK_IMAGE}`;
1414test . beforeEach ( captureConsoleLogs ( "apps" ) ) ;
1515test . beforeEach ( disableWallpaper ) ;
1616
17+ const EMULATOR_BOOT_TIMEOUT = 30_000 ;
18+
1719test . 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 }
You can’t perform that action at this time.
0 commit comments