UNPKG

@nx/detox

Version:

The Nx Plugin for Detox contains executors and generators for allowing your workspace to use the powerful Detox integration testing capabilities.

71 lines (70 loc) 2.3 kB
{ "$schema": "https://json-schema.org/schema", "title": "Create Detox Configuration for the workspace", "description": "Create Detox Configuration for the workspace.", "type": "object", "properties": { "appProject": { "type": "string", "description": "Name of the frontend project to be tested.", "$default": { "$source": "projectName" }, "x-prompt": "What is the name of the frontend project to test?" }, "e2eDirectory": { "type": "string", "description": "A directory where the project is placed relative current working directory (CWD).", "$default": { "$source": "argv", "index": 0 }, "x-prompt": "Which directory do you want to create the E2E project in?" }, "e2eName": { "type": "string", "description": "Name of the E2E Project." }, "appName": { "type": "string", "description": "Name of the app to be tested if different from appProject" }, "appDisplayName": { "type": "string", "description": "Display name of the app to be tested if different from appProject" }, "framework": { "type": "string", "description": "App framework to test", "enum": ["react-native", "expo"], "x-prompt": "What app framework should detox test?" }, "linter": { "description": "The tool to use for running lint checks.", "type": "string", "enum": ["eslint", "none"], "default": "eslint" }, "js": { "description": "Generate JavaScript files rather than TypeScript files.", "type": "boolean", "default": false }, "skipFormat": { "description": "Skip formatting files.", "type": "boolean", "default": false, "x-priority": "internal" }, "setParserOptionsProject": { "type": "boolean", "description": "Whether or not to configure the ESLint `parserOptions.project` option. We do not do this by default for lint performance reasons.", "default": false }, "useProjectJson": { "type": "boolean", "description": "Use a `project.json` configuration file instead of inlining the Nx configuration in the `package.json` file." } }, "required": ["e2eDirectory", "appProject", "framework"] }