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:
parent
8a02c24493
commit
e33d694361
|
@ -68,7 +68,7 @@ module.exports = {
|
||||||
reporter: Reporter,
|
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")) {
|
if (process.argv.includes("-t")) {
|
||||||
// Running testem without ember cli. Probably for theme-qunit
|
// Running testem without ember cli. Probably for theme-qunit
|
||||||
|
|
Loading…
Reference in New Issue