Skip to content

Commit

Permalink
ci: change port to 43210
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermerodz committed Mar 1, 2024
1 parent c8a156d commit fa5a220
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"type": "module",
"scripts": {
"dev": "astro dev",
"dev:43210": "astro dev --port 43210",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
Expand Down
6 changes: 3 additions & 3 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default defineConfig({
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Base URL to use in actions like `await page.goto('/')`. */
baseURL: 'http://localhost:4321',
baseURL: 'http://localhost:43210',
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: 'on-first-retry',

Expand Down Expand Up @@ -77,8 +77,8 @@ export default defineConfig({

/* Run your local dev server before starting the tests */
webServer: {
command: 'npm run dev',
url: 'http://localhost:4321/',
command: 'npm run dev:43210',
url: 'http://localhost:43210/',
reuseExistingServer: !process.env.CI,
stdout: "pipe",
stderr: "pipe",
Expand Down

0 comments on commit fa5a220

Please sign in to comment.