<!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
70 lines
2.3 KiB
JSON
70 lines
2.3 KiB
JSON
{
|
|
"name": "vitest",
|
|
"factory": "./src/generators/vitest/vitest-generator#vitestGeneratorInternal",
|
|
"schema": {
|
|
"$schema": "https://json-schema.org/schema",
|
|
"cli": "nx",
|
|
"$id": "Vitest",
|
|
"title": "Vitest",
|
|
"type": "object",
|
|
"description": "Generate a Vitest setup for a project.",
|
|
"properties": {
|
|
"project": {
|
|
"type": "string",
|
|
"description": "The name of the project to test.",
|
|
"$default": { "$source": "projectName" }
|
|
},
|
|
"uiFramework": {
|
|
"type": "string",
|
|
"enum": ["react", "none"],
|
|
"default": "none",
|
|
"description": "UI framework to use with vitest."
|
|
},
|
|
"inSourceTests": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Do not generate separate spec files and set up in-source testing."
|
|
},
|
|
"skipViteConfig": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Skip generating a vite config file."
|
|
},
|
|
"coverageProvider": {
|
|
"type": "string",
|
|
"enum": ["v8", "istanbul", "custom"],
|
|
"default": "v8",
|
|
"description": "Coverage provider to use."
|
|
},
|
|
"testTarget": {
|
|
"type": "string",
|
|
"description": "The test target of the project to be transformed to use the @nx/vite:test executor.",
|
|
"hidden": true
|
|
},
|
|
"skipFormat": {
|
|
"description": "Skip formatting files.",
|
|
"type": "boolean",
|
|
"default": false,
|
|
"x-priority": "internal"
|
|
},
|
|
"testEnvironment": {
|
|
"description": "The vitest environment to use. See https://vitest.dev/config/#environment.",
|
|
"type": "string",
|
|
"enum": ["node", "jsdom", "happy-dom", "edge-runtime"]
|
|
},
|
|
"runtimeTsconfigFileName": {
|
|
"type": "string",
|
|
"description": "The name of the project's tsconfig file that includes the runtime source files. If not provided, it will default to `tsconfig.lib.json` for libraries and `tsconfig.app.json` for applications."
|
|
}
|
|
},
|
|
"required": ["project"],
|
|
"presets": []
|
|
},
|
|
"description": "Generate a vitest configuration.",
|
|
"implementation": "/packages/vite/src/generators/vitest/vitest-generator#vitestGeneratorInternal.ts",
|
|
"aliases": [],
|
|
"hidden": false,
|
|
"path": "/packages/vite/src/generators/vitest/schema.json",
|
|
"type": "generator"
|
|
}
|