@nxextensions/firebase-cypress
Version:
An NX Plugin for Firebase Applications that would like to use emulators for E2E testing with Cypress
40 lines (39 loc) • 994 B
JSON
{
"$schema": "https://json-schema.org/schema",
"$id": "Init",
"title": "Init Firebase Cypress",
"type": "object",
"properties": {
"skipNxFirebase": {
"type": "boolean",
"description": "Whether to initialize the base nx-firebase package",
"default": true,
"x-prompt": "Use new executor functionality (recommended)?"
},
"js": {
"type": "boolean",
"description": "Whether to generate tests as JavaScript or TypeScript",
"default": false
},
"directory": {
"type": "string",
"description": "Directory to store all E2E test code",
"default": "src"
},
"bundler": {
"type": "string",
"enum": [
"vite",
"webpack"
],
"description": "Which bundler to install for the purpose of the application",
"default": "webpack"
},
"baseUrl": {
"type": "string",
"description": "The root url that your app runs at",
"default": "http://localhost:4200"
}
},
"required": ["skipNxFirebase"]
}