Skip to content

Commit e0de9a5

Browse files
committed
feat: remove backend error suppresion
1 parent 5a5c437 commit e0de9a5

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

.github/workflows/e2e-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
cp -r frontend/testing-view/dist/. electron-app/renderer/testing-view/
7777
7878
- name: Run UI tests
79-
run: pnpm --filter e2e exec playwright test tests/ui
79+
run: pnpm --filter e2e exec playwright test tests/ui/startup.test.ts
8080

8181
- name: Upload test report
8282
if: always()

e2e/fixtures/electron.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,6 @@ export const test = base.extend<ElectronFixtures>({
2727
},
2828
});
2929

30-
// Suppress backend error dialogs — binary may not be available in test env
31-
await app.evaluate(({ dialog }) => {
32-
dialog.showErrorBox = () => {};
33-
});
34-
3530
// Wait for both windows to open before yielding the app fixture,
3631
// so logPage and logWindow fixtures can safely index into app.windows()
3732
await app.firstWindow(); // Backend Logs — always first

0 commit comments

Comments
 (0)