Skip to content

Commit c8a76f8

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 c8a76f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ export const cliOptions = {
7272
},
7373
channel: {
7474
type: 'string' as const,
75-
description: 'Specify a different Chrome channel that should be used.',
75+
description:
76+
'Specify a different Chrome channel that should be used. The default is the stable channel version.',
7677
choices: ['stable', 'canary', 'beta', 'dev'] as const,
7778
conflicts: ['browserUrl', 'executablePath'],
78-
default: 'stable',
7979
},
8080
logFile: {
8181
type: 'string' as const,

0 commit comments

Comments
 (0)