Skip to content

Commit e49ed5a

Browse files
committed
Use chrome beta or canary, if they're the only Chrome available
1 parent aca6779 commit e49ed5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interceptors/fresh-chrome.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const getChromeBrowserDetails = async (config: HtkConfig): Promise<Browser | und
2323
const browsers = await getAvailableBrowsers(config.configPath);
2424

2525
// Get the details for the first of these browsers that is installed.
26-
return ['chrome', 'chromium']
26+
return ['chrome', 'chromium', 'chrome-beta', 'chrome-canary']
2727
.map((chromeName) => _.find(browsers, b => b.name === chromeName))
2828
.filter(Boolean)[0] as Browser;
2929
};

0 commit comments

Comments
 (0)