Skip to content

Commit

Permalink
Fix construction of e2eSiteUrl to include scheme and port
Browse files Browse the repository at this point in the history
  • Loading branch information
westonruter committed May 18, 2022
1 parent d2d20e9 commit df6f7fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/env/lib/commands/start.js
Expand Up @@ -173,7 +173,7 @@ module.exports = async function start( { spinner, debug, update, xdebug } ) {
}

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

const { out: mySQLAddress } = await dockerCompose.port(
'mysql',
Expand Down

0 comments on commit df6f7fa

Please sign in to comment.