Skip to content

Commit 3c6f871

Browse files
committed
WIP: Log test progress
1 parent d4e56b0 commit 3c6f871

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/smoke.spec.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ test('app launches and loads UI from server', async () => {
1818
const window = await electronApp.firstWindow();
1919

2020
await expect(window.evaluate(() => typeof (window as any).desktopApi !== 'undefined')).resolves.toBe(true);
21+
console.log('saw desktopApi');
2122

2223
await expect(window.locator('h1:has-text("Intercept HTTP")')).toBeVisible({ timeout: 60000 });
24+
console.log('saw title');
2325

2426
await electronApp.close();
27+
console.log('closed app');
2528
});

0 commit comments

Comments
 (0)