Skip to content

Commit 4bd52cd

Browse files
authored
Merge pull request #99 from buildkite/playwright-test-server-move-port
playwright test server moved to less common port (8080 -> 18080)
2 parents 42b803a + bf14472 commit 4bd52cd

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

examples/playwright/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"buildkite-test-collector": "file:../.."
66
},
77
"scripts": {
8-
"start": "npx http-server -p 8080",
8+
"start": "npx http-server -p 18080",
99
"test": "npx playwright test"
1010
},
1111
"dependencies": {

examples/playwright/playwright.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ module.exports = defineConfig({
88
reporter: [['line'], ['buildkite-test-collector/playwright/reporter']],
99
webServer: {
1010
command: 'npm start',
11-
url: 'http://127.0.0.1:8080',
11+
url: 'http://127.0.0.1:18080',
1212
},
1313
use: {
14-
baseURL: 'http://localhost:8080/',
14+
baseURL: 'http://localhost:18080/',
1515
},
1616

1717
/* Configure projects for major browsers */

examples/playwright/token.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ module.exports = defineConfig({
1111
],
1212
webServer: {
1313
command: 'npm start',
14-
url: 'http://127.0.0.1:8080',
14+
url: 'http://127.0.0.1:18080',
1515
},
1616
use: {
17-
baseURL: 'http://localhost:8080/',
17+
baseURL: 'http://localhost:18080/',
1818
},
1919

2020
/* Configure projects for major browsers */

0 commit comments

Comments
 (0)