DEV: Stick to ipv4 when proxying testem requests (#18064)

`localhost` made it use ipv6, which didn't work (on macOS 13)
This commit is contained in:
Jarek Radosz 2022-08-30 13:38:55 +02:00 committed by GitHub
parent 8a02c24493
commit e33d694361
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ module.exports = {
reporter: Reporter,
};
const target = `http://localhost:${process.env.UNICORN_PORT || "3000"}`;
const target = `http://127.0.0.1:${process.env.UNICORN_PORT || "3000"}`;
if (process.argv.includes("-t")) {
// Running testem without ember cli. Probably for theme-qunit