Skip to content

Commit

Permalink
ci(scripts): change localhost ip
Browse files Browse the repository at this point in the history
  • Loading branch information
sabertazimi committed Feb 25, 2023
1 parent 3be2860 commit e0ace13
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
"build": "next build && next-sitemap --config sitemap.config.js",
"clone": "git clone https://$VERCEL_GIT_PROVIDER.com/$VERCEL_GIT_REPO_OWNER/$VERCEL_GIT_REPO_SLUG && rm -fr .git && cp -fr $VERCEL_GIT_REPO_SLUG/.git . && rm -fr $VERCEL_GIT_REPO_SLUG",
"dev": "next",
"e2e:chrome": "start-server-and-test e2e:prepare http://localhost:3000 cypress:chrome",
"e2e:firefox": "start-server-and-test e2e:prepare http://localhost:3000 cypress:firefox",
"e2e:ui": "start-server-and-test e2e:prepare http://localhost:3000 cypress:open",
"e2e:chrome": "start-server-and-test e2e:prepare http://127.0.0.1:3000 cypress:chrome",
"e2e:firefox": "start-server-and-test e2e:prepare http://127.0.0.1:3000 cypress:firefox",
"e2e:ui": "start-server-and-test e2e:prepare http://127.0.0.1:3000 cypress:open",
"e2e:prepare": "yarn build && yarn serve",
"cypress:chrome": "cypress run --browser chrome",
"cypress:chromium": "cypress run --browser chromium",
Expand All @@ -44,7 +44,7 @@
"changeset": "standard-version --dry-run -s",
"release": "standard-version -s",
"serve": "next start",
"start": "start-server-and-test dev http://localhost:3000 cypress:open",
"start": "start-server-and-test dev http://127.0.0.1:3000 cypress:open",
"test": "jest -o",
"test:all": "jest",
"test:watch": "jest --watch"
Expand Down

0 comments on commit e0ace13

Please sign in to comment.