blakus/apps/fastify-api-e2e/project.json

18 lines
473 B
JSON

{
"name": "fastify-api-e2e",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"implicitDependencies": ["fastify-api"],
"targets": {
"e2e": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{e2eProjectRoot}"],
"options": {
"jestConfig": "apps/fastify-api-e2e/jest.config.ts",
"passWithNoTests": true
},
"dependsOn": ["fastify-api:build"]
}
}
}