Skip to content

Commit 876ff84

Browse files
committed
fix: deconflict more
1 parent ce82af0 commit 876ff84

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

examples/demo-app/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default defineConfig({
4444
/* Run your local server before starting the tests */
4545
webServer: [
4646
{
47-
command: "pnpm nx preview demo-app",
47+
command: "pnpm nx standalone demo-app",
4848
url: "http://localhost:3006",
4949
reuseExistingServer: !process.env.CI,
5050
timeout: 180_000,

examples/demo-app/project.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,18 @@
7070
},
7171
"dependsOn": ["^build", "deploy-contracts-erc4337"]
7272
},
73+
"standalone": {
74+
"executor": "nx:run-commands",
75+
"options": {
76+
"cwd": "examples/demo-app",
77+
"commands": [
78+
{
79+
"command": "PORT=3006 pnpm nuxt preview",
80+
"prefix": "Demo-App:"
81+
}
82+
]
83+
}
84+
},
7385
"preview": {
7486
"executor": "nx:run-commands",
7587
"options": {
@@ -115,6 +127,13 @@
115127
},
116128
"dependsOn": ["e2e:setup"]
117129
},
130+
"e2e:no-deploy": {
131+
"executor": "nx:run-commands",
132+
"options": {
133+
"cwd": "examples/demo-app",
134+
"commands": ["pnpm exec playwright install chromium", "playwright test --config=playwright.config.ts"]
135+
}
136+
},
118137
"e2e:erc4337": {
119138
"executor": "nx:run-commands",
120139
"options": {

packages/auth-server-api/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
PORT=3004
33

44
# CORS Configuration (comma-separated origins)
5-
CORS_ORIGINS=http://localhost:3003,http://localhost:3002,http://localhost:3000
5+
CORS_ORIGINS=http://localhost:3003,http://localhost:3002,http://localhost:3000,http://localhost:3006
66

77
# Deployer Configuration (Private key with funds for deployment gas)
88
# For local development, use the Anvil rich account:

0 commit comments

Comments
 (0)