Skip to content

Commit

Permalink
update display name
Browse files Browse the repository at this point in the history
  • Loading branch information
mschile committed Dec 12, 2024
1 parent ba44fa8 commit 71576ec
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion packages/launcher/__snapshots__/browsers_spec.ts.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ exports['browsers returns the expected list of browsers 1'] = [
'name': 'chrome-for-testing',
'family': 'chromium',
'channel': 'stable',
'displayName': 'Chrome Test',
'displayName': 'Chrome for Testing',
'versionRegex': {},
'binary': 'chrome',
'minSupportedVersion': 64,
Expand Down
2 changes: 1 addition & 1 deletion packages/launcher/__snapshots__/darwin_spec.ts.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ exports['darwin browser detection detects browsers as expected 1'] = [
'name': 'chrome-for-testing',
'family': 'chromium',
'channel': 'stable',
'displayName': 'Chrome Test',
'displayName': 'Chrome for Testing',
'versionRegex': {},
'binary': 'chrome',
'minSupportedVersion': 64,
Expand Down
4 changes: 2 additions & 2 deletions packages/launcher/__snapshots__/windows_spec.ts.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ exports['windows browser detection detects browsers as expected 1'] = [
'name': 'chrome-for-testing',
'family': 'chromium',
'channel': 'stable',
'displayName': 'Chrome Test',
'displayName': 'Chrome for Testing',
'versionRegex': {},
'binary': 'chrome',
'minSupportedVersion': 64,
Expand Down Expand Up @@ -279,7 +279,7 @@ exports['windows browser detection detects Chrome for Testing 32-bit install 1']
'name': 'chrome-for-testing',
'family': 'chromium',
'channel': 'stable',
'displayName': 'Chrome Test',
'displayName': 'Chrome for Testing',
'versionRegex': {},
'binary': 'chrome',
'minSupportedVersion': 64,
Expand Down
12 changes: 6 additions & 6 deletions packages/launcher/lib/darwin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,18 @@ export const browsers: Detectors = {
bundleId: 'com.microsoft.Edge',
versionProperty: 'CFBundleShortVersionString',
},
canary: {
appName: 'Microsoft Edge Canary.app',
executable: 'Contents/MacOS/Microsoft Edge Canary',
bundleId: 'com.microsoft.Edge.Canary',
versionProperty: 'CFBundleShortVersionString',
},
beta: {
appName: 'Microsoft Edge Beta.app',
executable: 'Contents/MacOS/Microsoft Edge Beta',
bundleId: 'com.microsoft.Edge.Beta',
versionProperty: 'CFBundleShortVersionString',
},
canary: {
appName: 'Microsoft Edge Canary.app',
executable: 'Contents/MacOS/Microsoft Edge Canary',
bundleId: 'com.microsoft.Edge.Canary',
versionProperty: 'CFBundleShortVersionString',
},
dev: {
appName: 'Microsoft Edge Dev.app',
executable: 'Contents/MacOS/Microsoft Edge Dev',
Expand Down
2 changes: 1 addition & 1 deletion packages/launcher/lib/known-browsers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const knownBrowsers: Browser[] = [
name: 'chrome-for-testing',
family: 'chromium',
channel: 'stable',
displayName: 'Chrome Test',
displayName: 'Chrome for Testing',
versionRegex: /Google Chrome for Testing (\S+)/m,
binary: 'chrome',
minSupportedVersion: MIN_CHROME_VERSION,
Expand Down
2 changes: 1 addition & 1 deletion packages/launcher/lib/windows/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ const formPaths: WindowsBrowserPaths = {
beta: () => {
return [normalize('C:/Program Files (x86)/Microsoft/Edge Beta/Application/msedge.exe')]
},
canary: formEdgeCanaryAppPath,
dev: () => {
return [normalize('C:/Program Files (x86)/Microsoft/Edge Dev/Application/msedge.exe')]
},
canary: formEdgeCanaryAppPath,
},
}

Expand Down

0 comments on commit 71576ec

Please sign in to comment.