Skip to content

Commit 8d4dd35

Browse files
committed
debug(integration-test): use 5173 as port number explicitly
1 parent 2dc17b3 commit 8d4dd35

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/agoric-cli/tools/getting-started.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,6 @@ export const gettingStartedWorkflowTest = async (t, options = {}) => {
208208

209209
// ==============
210210
// yarn start:ui
211-
const uiPort = '5173';
212211
const uiStartP = pspawn(`yarn`, ['start:ui'], {
213212
stdio: ['ignore', 'inherit', 'inherit'],
214213
env: { ...process.env },
@@ -230,7 +229,7 @@ export const gettingStartedWorkflowTest = async (t, options = {}) => {
230229
return;
231230
}
232231

233-
const req = request('http://localhost:${uiPort}/', _res => {
232+
const req = request('http://localhost:5173/', _res => {
234233
resolve('listening');
235234
});
236235
req.setTimeout(2000);

0 commit comments

Comments
 (0)