diff --git a/packages/integration-tests/tests/app.test.js b/packages/integration-tests/tests/app.test.js index 11951dfef..c669a1ed2 100644 --- a/packages/integration-tests/tests/app.test.js +++ b/packages/integration-tests/tests/app.test.js @@ -5,12 +5,12 @@ import waitOn from 'wait-on' import page from './page-model' -fixture`Cloud Carbon Footprint`.page`http://localhost:3000/` +fixture`Cloud Carbon Footprint`.page`http://127.0.0.1:3000/` .before(async () => { await waitOn({ resources: [ - 'http://localhost:3000/', - 'http://localhost:4000/api/healthz', + 'http://127.0.0.1:3000/', + 'http://127.0.0.1:4000/api/healthz', ], }) }) diff --git a/packages/integration-tests/tests/recommendations.test.js b/packages/integration-tests/tests/recommendations.test.js index 6162ce7a7..945fcb724 100644 --- a/packages/integration-tests/tests/recommendations.test.js +++ b/packages/integration-tests/tests/recommendations.test.js @@ -6,10 +6,10 @@ import waitOn from 'wait-on' import page from './page-model' const getLocation = ClientFunction(() => document.location.href) -fixture`Cloud Carbon Footprint Recommendations`.page`http://localhost:3000/` +fixture`Cloud Carbon Footprint Recommendations`.page`http://127.0.0.1:3000/` .before(async () => { await waitOn({ - resources: ['http://localhost:3000/'], + resources: ['http://127.0.0.1:3000/'], }) }) .beforeEach(async (t) => {