Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: generate start and test npm scripts #387

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 9 additions & 9 deletions index.ts
Expand Up @@ -348,24 +348,24 @@ async function init() {
if (needsPinia) {
render('config/pinia')
}
if (needsVitest) {
render('config/vitest')
}
if (needsCypress) {
render('config/cypress')
}
if (needsCypressCT) {
render('config/cypress-ct')
}
if (needsNightwatch) {
render('config/nightwatch')
}
if (needsNightwatchCT) {
render('config/nightwatch-ct')
}
if (needsPlaywright) {
render('config/playwright')
}
if (needsVitest) {
render('config/vitest')
}
if (needsCypressCT) {
render('config/cypress-ct')
}
if (needsNightwatchCT) {
render('config/nightwatch-ct')
}
cexbrayat marked this conversation as resolved.
Show resolved Hide resolved
if (needsTypeScript) {
render('config/typescript')

Expand Down
1 change: 1 addition & 0 deletions template/base/package.json
Expand Up @@ -2,6 +2,7 @@
"private": true,
"scripts": {
"dev": "vite",
"start": "npm run dev",
"build": "vite build",
"preview": "vite preview"
},
Expand Down
3 changes: 2 additions & 1 deletion template/config/cypress-ct/package.json
@@ -1,7 +1,8 @@
{
"scripts": {
"test:unit": "cypress run --component",
"test:unit:dev": "cypress open --component"
"test:unit:dev": "cypress open --component",
"test": "npm run test:unit"
},
"dependencies": {
"vue": "^3.3.8"
Expand Down
3 changes: 2 additions & 1 deletion template/config/cypress/package.json
@@ -1,7 +1,8 @@
{
"scripts": {
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'"
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"test": "npm run test:e2e"
},
"devDependencies": {
"cypress": "^13.5.1",
Expand Down
3 changes: 2 additions & 1 deletion template/config/nightwatch-ct/package.json
@@ -1,6 +1,7 @@
{
"scripts": {
"test:unit": "nightwatch src/**/__tests__/*"
"test:unit": "nightwatch src/**/__tests__/*",
"test": "npm run test:unit"
},
"dependencies": {
"vue": "^3.3.8"
Expand Down
3 changes: 2 additions & 1 deletion template/config/nightwatch/package.json
@@ -1,6 +1,7 @@
{
"scripts": {
"test:e2e": "nightwatch tests/e2e/*"
"test:e2e": "nightwatch tests/e2e/*",
"test": "npm run test:e2e"
},
"devDependencies": {
"nightwatch": "^3.3.2",
Expand Down
3 changes: 2 additions & 1 deletion template/config/playwright/package.json
@@ -1,6 +1,7 @@
{
"scripts": {
"test:e2e": "playwright test"
"test:e2e": "playwright test",
"test": "npm run test:e2e"
},
"devDependencies": {
"@playwright/test": "^1.40.0"
Expand Down
3 changes: 2 additions & 1 deletion template/config/vitest/package.json
@@ -1,6 +1,7 @@
{
"scripts": {
"test:unit": "vitest"
"test:unit": "vitest",
"test": "npm run test:unit"
},
"dependencies": {
"vue": "^3.3.8"
Expand Down