Skip to content

Commit df6f7fa

Browse files
committed
Fix construction of e2eSiteUrl to include scheme and port
1 parent d2d20e9 commit df6f7fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/env/lib/commands/start.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ module.exports = async function start( { spinner, debug, update, xdebug } ) {
173173
}
174174

175175
const siteUrl = config.env.development.config.WP_SITEURL;
176-
const e2eSiteUrl = config.env.tests.config.WP_TESTS_DOMAIN;
176+
const e2eSiteUrl = `http://${ config.env.tests.config.WP_TESTS_DOMAIN }:${ config.env.tests.port }/`;
177177

178178
const { out: mySQLAddress } = await dockerCompose.port(
179179
'mysql',

0 commit comments

Comments
 (0)