File tree Expand file tree Collapse file tree 8 files changed +22
-15
lines changed Expand file tree Collapse file tree 8 files changed +22
-15
lines changed Original file line number Diff line number Diff line change @@ -372,24 +372,24 @@ async function init() {
372372 if ( needsPinia ) {
373373 render ( 'config/pinia' )
374374 }
375- if ( needsVitest ) {
376- render ( 'config/vitest' )
377- }
378375 if ( needsCypress ) {
379376 render ( 'config/cypress' )
380377 }
381- if ( needsCypressCT ) {
382- render ( 'config/cypress-ct' )
383- }
384378 if ( needsNightwatch ) {
385379 render ( 'config/nightwatch' )
386380 }
387- if ( needsNightwatchCT ) {
388- render ( 'config/nightwatch-ct' )
389- }
390381 if ( needsPlaywright ) {
391382 render ( 'config/playwright' )
392383 }
384+ if ( needsVitest ) {
385+ render ( 'config/vitest' )
386+ }
387+ if ( needsCypressCT ) {
388+ render ( 'config/cypress-ct' )
389+ }
390+ if ( needsNightwatchCT ) {
391+ render ( 'config/nightwatch-ct' )
392+ }
393393 if ( needsTypeScript ) {
394394 render ( 'config/typescript' )
395395
Original file line number Diff line number Diff line change 33 "type" : " module" ,
44 "scripts" : {
55 "dev" : " vite" ,
6+ "start" : " npm run dev" ,
67 "build" : " vite build" ,
78 "preview" : " vite preview"
89 },
Original file line number Diff line number Diff line change 11{
22 "scripts" : {
33 "test:unit" : " cypress run --component" ,
4- "test:unit:dev" : " cypress open --component"
4+ "test:unit:dev" : " cypress open --component" ,
5+ "test" : " npm run test:unit"
56 },
67 "dependencies" : {
78 "vue" : " ^3.4.27"
Original file line number Diff line number Diff line change 11{
22 "scripts" : {
33 "test:e2e" : " start-server-and-test preview http://localhost:4173 'cypress run --e2e'" ,
4- "test:e2e:dev" : " start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'"
4+ "test:e2e:dev" : " start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'" ,
5+ "test" : " npm run test:e2e"
56 },
67 "devDependencies" : {
78 "cypress" : " ^13.10.0" ,
Original file line number Diff line number Diff line change 11{
22 "scripts" : {
3- "test:unit" : " nightwatch src/**/__tests__/*"
3+ "test:unit" : " nightwatch src/**/__tests__/*" ,
4+ "test" : " npm run test:unit"
45 },
56 "dependencies" : {
67 "vue" : " ^3.4.27"
Original file line number Diff line number Diff line change 11{
22 "scripts" : {
3- "test:e2e" : " nightwatch tests/e2e/*"
3+ "test:e2e" : " nightwatch tests/e2e/*" ,
4+ "test" : " npm run test:e2e"
45 },
56 "devDependencies" : {
67 "nightwatch" : " ^3.6.3" ,
Original file line number Diff line number Diff line change 11{
22 "scripts" : {
3- "test:e2e" : " playwright test"
3+ "test:e2e" : " playwright test" ,
4+ "test" : " npm run test:e2e"
45 },
56 "devDependencies" : {
67 "@playwright/test" : " ^1.44.1"
Original file line number Diff line number Diff line change 11{
22 "scripts" : {
3- "test:unit" : " vitest"
3+ "test:unit" : " vitest" ,
4+ "test" : " npm run test:unit"
45 },
56 "dependencies" : {
67 "vue" : " ^3.4.27"
You can’t perform that action at this time.
0 commit comments