File tree Expand file tree Collapse file tree 4 files changed +10
-4
lines changed
optionalFeatures/testcafe/base Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -750,7 +750,7 @@ const initializeNewProject = async (
750
750
) ;
751
751
}
752
752
753
- const workspaces = [ `${ reservedDir . MODULES } /*` ] ;
753
+ const workspaces = [ `${ reservedDir . MODULES } /**/* ` ] ;
754
754
let rootPacakgeJson ;
755
755
if ( newProject ) {
756
756
const { root, apps } = await copyOptionalTemplatesNewProject (
Original file line number Diff line number Diff line change 1
1
{
2
+ "name" : " testcafe" ,
3
+ "version" : " 0.1.0" ,
2
4
"scripts" : {
3
5
"clean" : " npx rimraf cucumber-json-reports" ,
4
- "test " : " gherkin-testcafe" ,
6
+ "e2e " : " gherkin-testcafe" ,
5
7
"report" : " node utils/generateReport.js" ,
6
- "test :local" : " node local"
8
+ "e2e :local" : " node local"
7
9
},
8
10
"dependencies" : {
9
11
"@cucumber/cucumber" : " ^7.3.1" ,
Original file line number Diff line number Diff line change 8
8
"generate" : " generate && {commandType} format" ,
9
9
"start" : " turbo run start --parallel" ,
10
10
"test" : " turbo run test" ,
11
- "test:watch" : " turbo run test:watch"
11
+ "test:watch" : " turbo run test:watch" ,
12
+ "e2e" : " turbo run e2e"
12
13
},
13
14
"devDependencies" : {
14
15
"@commitlint/cli" : " ^16.2.1" ,
Original file line number Diff line number Diff line change 16
16
"test:watch" : {
17
17
"dependsOn" : [" ^build" ]
18
18
},
19
+ "e2e" : {
20
+ "dependsOn" : [" ^build" ]
21
+ },
19
22
"dev" : {
20
23
"cache" : false
21
24
},
You can’t perform that action at this time.
0 commit comments