Skip to content

Commit

Permalink
feat(testing): cypress vite
Browse files Browse the repository at this point in the history
  • Loading branch information
mandarini committed Nov 29, 2022
1 parent 19a6da3 commit fb70d17
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/generated/packages/cypress.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,12 @@
"type": "boolean",
"default": false,
"hidden": true
},
"bundler": {
"description": "The Cypress builder to use.",
"enum": ["vite", "webpack"],
"x-prompt": "Which Cypress builder do you want to use?",
"default": "webpack"
}
},
"required": ["name"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ export interface Schema {
standaloneConfig?: boolean;
skipPackageJson?: boolean;
rootProject?: boolean;
bundler?: 'webpack' | 'vite';
}
6 changes: 6 additions & 0 deletions packages/cypress/src/generators/cypress-project/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@
"type": "boolean",
"default": false,
"hidden": true
},
"bundler": {
"description": "The Cypress builder to use.",
"enum": ["vite", "webpack"],
"x-prompt": "Which Cypress builder do you want to use?",
"default": "webpack"
}
},
"required": ["name"],
Expand Down

0 comments on commit fb70d17

Please sign in to comment.