Skip to content

Commit 2245b0d

Browse files
Change ports for jlpm and Playwright (#62)
1 parent 693afd9 commit 2245b0d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/update-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,4 @@ jobs:
9595
start_server_script: 'null'
9696
test_folder: ui-tests
9797
npm_client: jlpm
98-
server_url: http-get://localhost:8899
98+
server_url: http-get://localhost:3000

ui-tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jlpm start
144144

145145
```sh
146146
cd ./ui-tests
147-
jlpm playwright codegen localhost:8888
147+
jlpm playwright codegen localhost:3000
148148
```
149149

150150
## Debug tests

ui-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Jupyter Everywhere Integration Tests",
55
"private": true,
66
"scripts": {
7-
"start": "cd ../dist && python -m http.server -b 127.0.0.1 8899",
7+
"start": "cd ../dist && python -m http.server -b 127.0.0.1 3000",
88
"test": "jlpm playwright test",
99
"test:update": "jlpm playwright test --update-snapshots"
1010
},

ui-tests/playwright.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ module.exports = {
1313
acceptDownloads: true,
1414
appPath: '',
1515
autoGoto: false,
16-
baseURL: 'http://localhost:8899',
16+
baseURL: 'http://localhost:3000',
1717
trace: 'retain-on-failure',
1818
video: 'retain-on-failure'
1919
},
2020
webServer: {
2121
command: 'jlpm start',
22-
port: 8899,
22+
port: 3000,
2323
timeout: 120 * 1000,
2424
reuseExistingServer: !process.env.CI
2525
}

0 commit comments

Comments
 (0)