80 lines
2.9 KiB
JSON
80 lines
2.9 KiB
JSON
{
|
|
"name": "application",
|
|
"factory": "./src/generators/application/application#detoxApplicationGeneratorInternal",
|
|
"schema": {
|
|
"$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?"
|
|
},
|
|
"e2eName": {
|
|
"type": "string",
|
|
"description": "Name of the E2E Project.",
|
|
"$default": { "$source": "argv", "index": 0 },
|
|
"x-prompt": "What name would you like to use for the E2E project?",
|
|
"pattern": "^[a-zA-Z][^:]*$"
|
|
},
|
|
"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?"
|
|
},
|
|
"e2eDirectory": {
|
|
"type": "string",
|
|
"description": "A directory where the project is placed relative to apps directory."
|
|
},
|
|
"projectNameAndRootFormat": {
|
|
"description": "Whether to generate the project name and root directory as provided (`as-provided`) or generate them composing their values and taking the configured layout into account (`derived`).",
|
|
"type": "string",
|
|
"enum": ["as-provided", "derived"]
|
|
},
|
|
"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
|
|
}
|
|
},
|
|
"required": ["e2eName", "appProject", "framework"],
|
|
"presets": []
|
|
},
|
|
"aliases": ["app"],
|
|
"x-type": "application",
|
|
"description": "Create a Detox application.",
|
|
"implementation": "/packages/detox/src/generators/application/application#detoxApplicationGeneratorInternal.ts",
|
|
"hidden": false,
|
|
"path": "/packages/detox/src/generators/application/schema.json",
|
|
"type": "generator"
|
|
}
|