Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
"unplugin-auto-import": "^21.0.0",
"unplugin-icons": "^23.0.1",
"viem": "^2.48.8",
"vocs": "2.0.0-rc.2",
"vocs": "2.0.10",
"wagmi": "3.6.14",
"waku": "1.0.0-beta.0",
"waku": "^1.0.0-beta.0",
"webauthx": "~0.1.1",
"zod": "^4.3.6"
},
Expand All @@ -65,7 +65,7 @@
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"use-sync-external-store": "^1.6.0",
"vite": "^8.0.14",
"vite": "^8.0.16",
"vite-plugin-mkcert": "^1.17.12"
},
"devEngines": {
Expand Down
6 changes: 4 additions & 2 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
fullyParallel: true,
forbidOnly: isCI,
retries: isCI ? 1 : 1, // Retry once due to testnet flakiness
workers: isCI ? 4 : undefined,
workers: isCI ? 1 : undefined,
timeout: 180000, // 3 min default timeout for testnet transactions
reporter: 'html',
use: {
Expand All @@ -23,7 +23,9 @@ export default defineConfig({
},
],
webServer: {
command: isCI ? 'VITE_E2E=true VITE_USE_HTTP=true pnpm run dev' : 'pnpm run dev 2>/dev/null',
command: isCI
? 'NODE_OPTIONS="--max-old-space-size=4096 --import tsx" VITE_E2E=true VITE_USE_HTTP=true vite'
: 'pnpm run dev 2>/dev/null',
url: webServerUrl,
ignoreHTTPSErrors: true,
reuseExistingServer: !isCI,
Expand Down
Loading
Loading