graphql-engine/frontend/apps/console-ee-e2e/project.json
Stefano Magni 2516a6a028 frontend: Create a Cypress project for the EE Console
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7825
GitOrigin-RevId: 74e6009ae4fd3915c3c705194c8221dada4e21a6
2023-02-07 16:16:20 +00:00

34 lines
868 B
JSON

{
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/console-ee-e2e/src",
"projectType": "application",
"targets": {
"e2e": {
"executor": "@nrwl/cypress:cypress",
"options": {
"cypressConfig": "apps/console-ee-e2e/cypress.config.ts",
"devServerTarget": "console-ee:serve:development",
"testingType": "e2e"
},
"configurations": {
"production": {
"devServerTarget": "console-ee:serve:production"
},
"ci": {
"parallel": true,
"record": true
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/console-ee-e2e/**/*.{js,ts}"]
}
}
},
"tags": [],
"implicitDependencies": ["console-ee"]
}