Skip to content

Commit

Permalink
chore(e2e test): fix url
Browse files Browse the repository at this point in the history
  • Loading branch information
chohner committed Jan 25, 2024
1 parent 20e0714 commit c3c94b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dotenv.config({ path: "./tests/test.env" });

const useDefaultBaseUrl = ["", undefined].includes(process.env.E2E_BASE_URL);
const baseURL = useDefaultBaseUrl
? "http://127.0.0.1:3000"
? "http://localhost:3000/"
: process.env.E2E_BASE_URL;

/**
Expand Down Expand Up @@ -73,7 +73,7 @@ export default defineConfig({
},
{
command: "npm run dev",
url: "http://127.0.0.1:3000",
url: "http://localhost:3000/",
reuseExistingServer: !process.env.CI,
},
],
Expand Down

0 comments on commit c3c94b2

Please sign in to comment.