Skip to content

Commit

Permalink
chore: configure HyperExecute to test on different browsers and platf…
Browse files Browse the repository at this point in the history
…orms
  • Loading branch information
josdejong committed Nov 4, 2024
1 parent a95102f commit c265fbd
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions test/browser-test-config/lambdatest-karma.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,30 +28,32 @@ module.exports = function (config) {
chrome_windows: {
...launcherDefaults,
browserName: 'chrome',
version: '130'
},
firefox_android: {
...launcherDefaults,
browserName: 'firefox',
version: '131'
// FIXME: configure Android
version: '130',
platform: 'windows 11'
},
firefox_windows: {
...launcherDefaults,
browserName: 'firefox',
version: '131',
// FIXME: configure windows
platform: 'windows 11'
},
safari_mac: {
...launcherDefaults,
browserName: 'safari',
version: '18.0'
// FIXME: configure Mac
version: '18',
platform: 'mac sequoia'
},
edge_windows: {
...launcherDefaults,
browserName: 'edge',
version: '130'
version: '130',
platform: 'windows 11'
},
chrome_android: {
...launcherDefaults,
browserName: 'chrome',
version: '130',
platform: 'android 15'
}
}

Expand Down

0 comments on commit c265fbd

Please sign in to comment.