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 @@ -348,24 +348,24 @@ async function init() {
348
348
if ( needsPinia ) {
349
349
render ( 'config/pinia' )
350
350
}
351
- if ( needsVitest ) {
352
- render ( 'config/vitest' )
353
- }
354
351
if ( needsCypress ) {
355
352
render ( 'config/cypress' )
356
353
}
357
- if ( needsCypressCT ) {
358
- render ( 'config/cypress-ct' )
359
- }
360
354
if ( needsNightwatch ) {
361
355
render ( 'config/nightwatch' )
362
356
}
363
- if ( needsNightwatchCT ) {
364
- render ( 'config/nightwatch-ct' )
365
- }
366
357
if ( needsPlaywright ) {
367
358
render ( 'config/playwright' )
368
359
}
360
+ if ( needsVitest ) {
361
+ render ( 'config/vitest' )
362
+ }
363
+ if ( needsCypressCT ) {
364
+ render ( 'config/cypress-ct' )
365
+ }
366
+ if ( needsNightwatchCT ) {
367
+ render ( 'config/nightwatch-ct' )
368
+ }
369
369
if ( needsTypeScript ) {
370
370
render ( 'config/typescript' )
371
371
Original file line number Diff line number Diff line change 2
2
"private" : true ,
3
3
"scripts" : {
4
4
"dev" : " vite" ,
5
+ "start" : " npm run dev" ,
5
6
"build" : " vite build" ,
6
7
"preview" : " vite preview"
7
8
},
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.3.8"
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.5.1" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"scripts" : {
3
- "test:unit" : " nightwatch src/components/**/__tests__/*"
3
+ "test:unit" : " nightwatch src/components/**/__tests__/*" ,
4
+ "test" : " npm run test:unit"
4
5
},
5
6
"dependencies" : {
6
7
"vue" : " ^3.3.8"
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.3.2" ,
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.40.0"
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.3.8"
You can’t perform that action at this time.
0 commit comments