Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotBraem committed Sep 2, 2024
1 parent 221b157 commit 659304f
Show file tree
Hide file tree
Showing 3 changed files with 2,504 additions and 2,210 deletions.
2 changes: 1 addition & 1 deletion playwright-tests/tests/redirectmap.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ describe("hot-reload", () => {

io = new Server(httpServer, {
cors: {
origin: `http://${HOST}:3000`,
origin: `http://${HOST}:8080`,
methods: ["GET", "POST"],
},
});
Expand Down
4 changes: 2 additions & 2 deletions playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ export default defineConfig({
/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */
actionTimeout: 0,
/* Base URL to use in actions like `await page.goto('/')`. */
baseURL: "http://localhost:3000",
baseURL: "http://localhost:8080",

/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: "on-first-retry",
storageState: {
cookies: [],
origins: [
{
origin: "http://localhost:3000",
origin: "http://localhost:8080",
localStorage: [],
},
],
Expand Down
Loading

0 comments on commit 659304f

Please sign in to comment.