Skip to content

Commit 2218a50

Browse files
committed
Fix browserUrl not working
Setting the default channel in the CLI resulted in our mutually exclusive check for browserUrl and channel to fail.
1 parent 2275553 commit 2218a50

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,9 @@ export const cliOptions = {
7272
},
7373
channel: {
7474
type: 'string' as const,
75-
description: 'Specify a different Chrome channel that should be used.',
75+
description: 'Specify a different Chrome channel that should be used. The default is the stable channel version.',
7676
choices: ['stable', 'canary', 'beta', 'dev'] as const,
7777
conflicts: ['browserUrl', 'executablePath'],
78-
default: 'stable',
7978
},
8079
logFile: {
8180
type: 'string' as const,

0 commit comments

Comments
 (0)