Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/nuxt/cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default defineConfig({
e2e: {
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
baseUrl: 'http://localhost:3000',
baseUrl: 'http://localhost:3100',
viewportWidth: 1600,
viewportHeight: 1400,
},
Expand Down
10 changes: 5 additions & 5 deletions packages/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@
"test:types": "tsc --noEmit --skipLibCheck",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:preview": "nuxi preview playground",
"dev:e2e": "nuxi dev playground-e2e",
"dev:preview": "nuxi preview playground --port 3100",
"dev:e2e": "nuxi dev playground-e2e --port 3100",
"prepare:playground": "nuxi prepare playground",
"dev:prepare": "nuxt-module-build build --stub && nuxi prepare playground",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e": "start-server-and-test dev:e2e http://localhost:3000 cy:run",
"test:e2e-watch": "start-server-and-test dev:e2e http://localhost:3000 cy:open",
"test:e2e": "start-server-and-test dev:e2e http://localhost:3100 cy:run",
"test:e2e-watch": "start-server-and-test dev:e2e http://localhost:3100 cy:open",
"pretest:e2e-static": "nuxi generate playground-e2e",
"test:e2e-static": "start-server-and-test dev:preview http://localhost:3000 cy:run",
"test:e2e-static": "start-server-and-test dev:preview http://localhost:3100 cy:run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "pnpm run test:e2e"
Expand Down
Loading