Skip to content

Commit c1d7fe6

Browse files
committed
Testing
1 parent e83210a commit c1d7fe6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

examples/basic-vanilla-esm/index.e2e.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ test('Hello Electron', async () => {
1515
});
1616

1717
const window = await electronApp.firstWindow();
18-
expect(await window.title()).toBe('Hello from Electron renderer!');
18+
//expect(await window.title()).toBe('Hello from Electron renderer!');
19+
//expect(await window.title()).toBe('');
20+
console.log(await window.title());
21+
console.log(await window.title());
22+
console.log(await window.title());
23+
console.log(await window.title());
1924

2025
const response = await window.textContent('[data-testid="greeting"]');
2126
expect(response).toBe('Hello Electron');

0 commit comments

Comments
 (0)