Skip to content

Commit

Permalink
fix(misc): fix cypress option in workspace preset generator (#22975)
Browse files Browse the repository at this point in the history
  • Loading branch information
leosvelperez authored Apr 24, 2024
1 parent 526ea7c commit 070932b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/generated/packages/workspace/generators/preset.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"e2eTestRunner": {
"description": "The tool to use for running e2e tests.",
"type": "string",
"enum": ["playwright", ",cypress", "jest", "detox", "none"]
"enum": ["playwright", "cypress", "jest", "detox", "none"]
},
"ssr": {
"description": "Enable Server-Side Rendering (SSR) and Static Site Generation (SSG/Prerendering) for the Angular application.",
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace/src/generators/preset/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"e2eTestRunner": {
"description": "The tool to use for running e2e tests.",
"type": "string",
"enum": ["playwright", ",cypress", "jest", "detox", "none"]
"enum": ["playwright", "cypress", "jest", "detox", "none"]
},
"ssr": {
"description": "Enable Server-Side Rendering (SSR) and Static Site Generation (SSG/Prerendering) for the Angular application.",
Expand Down

0 comments on commit 070932b

Please sign in to comment.