Is there an option to allow retries of failed tests? I dont see anything within the nx documentation or jest documentation.
In project.json
...
"test": {
"executor": "@nrwl/jest:jest",
"options": {
"jestConfig": "app/name/jest.config.ts",
"passWithNoTests": true,
"maxRetries": 3 <-- something like this
}
...