Skip to content

Commit

Permalink
Drop Support for Firefox 91, Safari 13, and edge 93
Browse files Browse the repository at this point in the history
With the release of Safari 16 we're no longer supporting Safari 13 and
can drop it from our tests.

Firefox ESR 91 is now EOL and 102 is the only supported ESR version so
we can update our tests to stop checking ESR 91.

Edge 104 is the currently active edge version.
  • Loading branch information
jrjohnson committed May 5, 2023
1 parent 315e678 commit 928938d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
strategy:
fail-fast: false
matrix:
firefox-version: [latest-esr, 102.2.0esr, 91.13.0esr]
firefox-version: [latest-esr]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down
21 changes: 6 additions & 15 deletions testem.browserstack.js
Original file line number Diff line number Diff line change
@@ -1,34 +1,25 @@
const FailureOnlyPerBrowserReporter = require('testem-failure-only-reporter/grouped-by-browser');
const defaultArgs = ['-t', '1800', '--browserstack.video', 'false', '--u', '<url>'];

const defaultArgs = [
'-t',
'1800',
'--browserstack.video',
'false',
'--browserstack.timezone',
'UTC',
'--u',
'<url>',
];
const BrowserStackLaunchers = {
BS_OSX_Safari: {
exe: 'node_modules/.bin/browserstack-launch',
args: [
'--os',
'OS X',
'--osv',
'Catalina',
'Big Sur',
'--b',
'safari',
'--bv',
'latest', // Will always be 13.x on Catalina
'latest', // Will always be 14.x on Big Sur
...defaultArgs,
],
protocol: 'browser',
},
BS_MS_Edge: {
exe: 'node_modules/.bin/browserstack-launch',
args: ['--os', 'Windows', '--osv', '10', '--b', 'edge', '--bv', '93', ...defaultArgs],
args: ['--os', 'Windows', '--osv', '10', '--b', 'edge', '--bv', '104', ...defaultArgs],
protocol: 'browser',
},
BS_IOS_SAFARI: {
Expand All @@ -39,11 +30,11 @@ const BrowserStackLaunchers = {
'--os',
'ios',
'--osv',
'14',
'15',
'--b',
'iphone',
'--device',
'iPhone 11',
'iPhone 13 Pro',
...defaultArgs,
],
protocol: 'browser',
Expand Down

0 comments on commit 928938d

Please sign in to comment.