Skip to content

Commit 8de6cbe

Browse files
committed
test: debug backend
1 parent 642d766 commit 8de6cbe

2 files changed

Lines changed: 3 additions & 1 deletion

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/tests/ui/startup.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import { expect, test } from "../../fixtures/electron";
22

33
test("backend logs window opens with correct title", async ({ logPage }) => {
44
await expect(logPage).toHaveTitle("Backend Logs");
5+
await logPage.waitForTimeout(6000);
6+
console.log("Backend logs:", await logPage.content());
57
});
68

79
test("control station window opens with correct title", async ({ page }) => {

0 commit comments

Comments
 (0)