Skip to content

Commit 0cb9223

Browse files
author
John Doe
committed
refactor: remove test target matching on executor
1 parent fe44df4 commit 0cb9223

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

nx.json

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@
9090
"configFile": "{projectRoot}/vitest.unit.config.ts",
9191
"coverage": {
9292
"enabled": true
93-
}
93+
},
94+
"passWithNoTests": true,
95+
"watch": false
9496
}
9597
},
9698
"int-test": {
@@ -102,13 +104,19 @@
102104
"configFile": "{projectRoot}/vitest.int.config.ts",
103105
"coverage": {
104106
"enabled": true
105-
}
107+
},
108+
"passWithNoTests": true,
109+
"watch": false
106110
}
107111
},
108112
"e2e": {
109113
"cache": true,
110114
"inputs": ["default", "test-vitest-inputs"],
111-
"dependsOn": ["^build"]
115+
"executor": "@nx/vitest:test",
116+
"options": {
117+
"passWithNoTests": true,
118+
"watch": false
119+
}
112120
},
113121
"nxv-pkg-install": {
114122
"parallelism": false

0 commit comments

Comments
 (0)