Skip to content

Commit

Permalink
test(docs-e2e,portal-e2e,website-e2e): fix web server misconfiguration
Browse files Browse the repository at this point in the history
  • Loading branch information
MFarabi619 committed Aug 21, 2024
1 parent 4c8da55 commit 3a7048c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/docs-e2e/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default defineConfig({
},
/* Run your local dev server before starting the tests */
webServer: {
command: 'nx start docs',
command: 'pnpm nx start docs',
url: 'http://127.0.0.1:3000',
reuseExistingServer: !process.env.CI,
cwd: workspaceRoot,
Expand Down
2 changes: 1 addition & 1 deletion apps/portal-e2e/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default defineConfig({
},
/* Run your local dev server before starting the tests */
webServer: {
command: 'npx nx start portal',
command: 'pnpm nx start portal',
url: 'http://127.0.0.1:3000',
reuseExistingServer: !process.env.CI,
cwd: workspaceRoot,
Expand Down
2 changes: 1 addition & 1 deletion apps/website-e2e/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default defineConfig({
},
/* Run your local dev server before starting the tests */
webServer: {
command: 'yarn nx dev website',
command: 'pnpm nx dev website',
url: 'http://localhost:3000',
reuseExistingServer: !process.env.CI,
cwd: workspaceRoot,
Expand Down

0 comments on commit 3a7048c

Please sign in to comment.