adjustments for windows

This commit is contained in:
Jean Miranda
2026-03-10 23:45:15 +01:00
parent cd7dc8bb86
commit 0f5c9b70c0
2 changed files with 6 additions and 0 deletions

View File

@@ -67,8 +67,13 @@ jobs:
shell: bash
run: |
yarn run electron:serve > server.log 2>&1 &
SERVER_PID=$!
echo "Electron serve started with PID: $SERVER_PID"
sleep 15
echo "=== Server log after 15s wait ==="
cat server.log
echo "=== Checking if process is running ==="
ps aux | grep electron || true
yarn workspace beekeeper-studio test:e2e e2e/tests/appLaunch.test.ts
env:
ELECTRON_ENABLE_LOGGING: 1

View File

@@ -12,5 +12,6 @@ export default defineConfig({
actionTimeout: 10000,
trace: 'on-first-retry',
screenshot: 'only-on-failure',
video: 'retain-on-failure',
}
});