e2e: make tests reusable for standalone

This commit is contained in:
Elian Doran
2026-04-19 11:32:52 +03:00
parent 7c53fe56be
commit 417228ebde
36 changed files with 148 additions and 79 deletions

View File

@@ -82,7 +82,7 @@ jobs:
require-healthy: true
- name: Run Playwright tests
run: TRILIUM_DOCKER=1 TRILIUM_PORT=8082 pnpm --filter=server-e2e e2e
run: TRILIUM_DOCKER=1 TRILIUM_PORT=8082 pnpm --filter=server e2e
- name: Upload Playwright trace
if: failure()

View File

@@ -73,14 +73,14 @@ jobs:
sleep 10
- name: Server end-to-end tests
run: pnpm --filter server-e2e e2e
run: pnpm --filter server e2e
- name: Upload test report
if: failure()
uses: actions/upload-artifact@v7
with:
name: e2e report ${{ matrix.arch }}
path: apps/server-e2e/test-output
path: apps/server/test-output
- name: Kill the server
if: always()