Commit bf64fed 1 parent 9c54116 commit bf64fed Copy full SHA for bf64fed
File tree 8 files changed +22
-15
lines changed
8 files changed +22
-15
lines changed Original file line number Diff line number Diff line change @@ -372,24 +372,24 @@ async function init() {
372
372
if ( needsPinia ) {
373
373
render ( 'config/pinia' )
374
374
}
375
- if ( needsVitest ) {
376
- render ( 'config/vitest' )
377
- }
378
375
if ( needsCypress ) {
379
376
render ( 'config/cypress' )
380
377
}
381
- if ( needsCypressCT ) {
382
- render ( 'config/cypress-ct' )
383
- }
384
378
if ( needsNightwatch ) {
385
379
render ( 'config/nightwatch' )
386
380
}
387
- if ( needsNightwatchCT ) {
388
- render ( 'config/nightwatch-ct' )
389
- }
390
381
if ( needsPlaywright ) {
391
382
render ( 'config/playwright' )
392
383
}
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
+ }
393
393
if ( needsTypeScript ) {
394
394
render ( 'config/typescript' )
395
395
Original file line number Diff line number Diff line change 3
3
"type" : " module" ,
4
4
"scripts" : {
5
5
"dev" : " vite" ,
6
+ "start" : " npm run dev" ,
6
7
"build" : " vite build" ,
7
8
"preview" : " vite preview"
8
9
},
Original file line number Diff line number Diff line change 1
1
{
2
2
"scripts" : {
3
3
"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"
5
6
},
6
7
"dependencies" : {
7
8
"vue" : " ^3.4.27"
Original file line number Diff line number Diff line change 1
1
{
2
2
"scripts" : {
3
3
"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"
5
6
},
6
7
"devDependencies" : {
7
8
"cypress" : " ^13.10.0" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"scripts" : {
3
- "test:unit" : " nightwatch src/**/__tests__/*"
3
+ "test:unit" : " nightwatch src/**/__tests__/*" ,
4
+ "test" : " npm run test:unit"
4
5
},
5
6
"dependencies" : {
6
7
"vue" : " ^3.4.27"
Original file line number Diff line number Diff line change 1
1
{
2
2
"scripts" : {
3
- "test:e2e" : " nightwatch tests/e2e/*"
3
+ "test:e2e" : " nightwatch tests/e2e/*" ,
4
+ "test" : " npm run test:e2e"
4
5
},
5
6
"devDependencies" : {
6
7
"nightwatch" : " ^3.6.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"scripts" : {
3
- "test:e2e" : " playwright test"
3
+ "test:e2e" : " playwright test" ,
4
+ "test" : " npm run test:e2e"
4
5
},
5
6
"devDependencies" : {
6
7
"@playwright/test" : " ^1.44.1"
Original file line number Diff line number Diff line change 1
1
{
2
2
"scripts" : {
3
- "test:unit" : " vitest"
3
+ "test:unit" : " vitest" ,
4
+ "test" : " npm run test:unit"
4
5
},
5
6
"dependencies" : {
6
7
"vue" : " ^3.4.27"
You can’t perform that action at this time.
0 commit comments