Skip to content

Commit

Permalink
fix: update default ports to Vite’s 5173
Browse files Browse the repository at this point in the history
  • Loading branch information
christianliebel committed May 16, 2024
1 parent 8e3e621 commit d942ccd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
],

// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [8080],
"forwardPorts": [5173],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "yarn install",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
uses: cypress-io/github-action@v4
with:
start: npm start
wait-on: 'http://localhost:8080'
wait-on: 'http://localhost:5173'
2 changes: 1 addition & 1 deletion cypress/e2e/about.cy.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
context('About', () => {
beforeEach(() => {
cy.visit('http://localhost:8080');
cy.visit('http://localhost:5173');
});

it('clicking Help > About should open about dialog', () => {
Expand Down

0 comments on commit d942ccd

Please sign in to comment.