Skip to content

Commit

Permalink
fix(cypress/schematic): add edge to list of allowed browsers (#17637)
Browse files Browse the repository at this point in the history
  • Loading branch information
admah committed Sep 9, 2021
1 parent ca4146d commit 49de24f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { JsonObject } from '@angular-devkit/core'
export interface CypressBuilderOptions extends JsonObject {
baseUrl: string
configFile: string | false
browser: 'electron' | 'chrome' | 'chromium' | 'canary' | 'firefox' | string
browser: 'electron' | 'chrome' | 'chromium' | 'canary' | 'firefox' | 'edge' | string
devServerTarget: string
env: Record<string, string>
quiet: boolean
Expand Down
3 changes: 2 additions & 1 deletion npm/cypress-schematic/src/builders/cypress/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"chrome",
"chromium",
"canary",
"firefox"
"firefox",
"edge"
]
},
"devServerTarget": {
Expand Down

0 comments on commit 49de24f

Please sign in to comment.