You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{
"plugin": "@nx/jest/plugin",
"include": ["**/e2e/**/*", "**/*.e2e.spec.ts"], //<-- not working
"options": {
"targetName": "e2e",
"ciTargetName": "e2e-ci",
"disableJestRuntime": false
}
}
when running nx graph the target "e2e" is not shown, even if there are many .e2e.spec.ts files in the project, but when replacing "/*.e2e.spec.ts" with just "/.ts" it works
Also "**/.spec.ts" doesn't work
the same for the exclude[] property as adding "**/*.e2e.spec.ts" doesn't prevent running e2e files
{
"plugin": "@nx/jest/plugin",
"exclude": ["**/e2e/**/*", "**/*.e2e.spec.ts"], //<-- *.e2e.spec.ts files will run
"options": {
"targetName": "unit-test"
}
},
Expected Behavior
The e2e target should be shown in nx graph when including 2e2 files
GitHub Repo
No response
Steps to Reproduce
add @nx/jest
in e2e part, include "**/*.e2e.spec.ts"
run nx graph -> the e2e target is not displayed
add "**/*.spec.ts" -> same
add "**/*.ts" -> now e2e is displayed in the task graph
Uh oh!
There was an error while loading. Please reload this page.
Current Behavior
nx.json
when running
nx graph
the target "e2e" is not shown, even if there are many .e2e.spec.ts files in the project, but when replacing "/*.e2e.spec.ts" with just "/.ts" it worksAlso "**/.spec.ts" doesn't work
the same for the
exclude[]
property as adding "**/*.e2e.spec.ts" doesn't prevent running e2e filesExpected Behavior
The e2e target should be shown in nx graph when including 2e2 files
GitHub Repo
No response
Steps to Reproduce
nx graph
-> the e2e target is not displayedNx Report
Failure Logs
Package Manager Version
pnpm v9.15.0
Operating System
Additional Information
No response
The text was updated successfully, but these errors were encountered: