Skip to content

Commit 7df4b06

Browse files
committed
test: update browser compatibility test versions for v17
The browser compatibility CI job contains a hardcoded set of browsers and platform combinations that should be updated for each major release. This update adjusts the versions for the Angular v17 release based on the support matrix at the time of release. Based on the release cadence of chrome-based browsers, the range was increased by 2 last versions to test a larger segment of the browser usage space. (cherry picked from commit 7160fc0)
1 parent aa9e7c6 commit 7df4b06

File tree

1 file changed

+17
-10
lines changed

1 file changed

+17
-10
lines changed

tests/legacy-cli/e2e/assets/protractor-saucelabs.conf.js

+17-10
Original file line numberDiff line numberDiff line change
@@ -17,47 +17,54 @@ exports.config = {
1717
allScriptsTimeout: 11000,
1818
specs: ['./src/**/*.e2e-spec.ts'],
1919

20+
// NOTE: https://saucelabs.com/products/platform-configurator can be used to determine configuration values
2021
multiCapabilities: [
2122
{
2223
browserName: 'chrome',
2324
platform: 'Windows 11',
24-
version: '105',
25+
version: '119',
26+
tunnelIdentifier,
27+
},
28+
{
29+
browserName: 'chrome',
30+
platform: 'Linux',
31+
version: '116',
2532
tunnelIdentifier,
2633
},
2734
{
2835
browserName: 'firefox',
29-
version: '104',
36+
version: '119',
3037
platform: 'Windows 11',
3138
tunnelIdentifier,
3239
},
3340
{
3441
browserName: 'firefox',
35-
version: '91', // Latest Firefox ESR version
36-
platform: 'Windows 11',
42+
version: '102', // Latest Firefox ESR version as of Sep 2023
43+
platform: 'Linux',
3744
tunnelIdentifier,
3845
},
3946
{
4047
browserName: 'safari',
41-
platform: 'macOS 12',
42-
version: '15',
48+
platform: 'macOS 13',
49+
version: '17',
4350
tunnelIdentifier,
4451
},
4552
{
4653
browserName: 'safari',
47-
platform: 'macOS 11.00',
48-
version: '14',
54+
platform: 'macOS 12',
55+
version: '16',
4956
tunnelIdentifier,
5057
},
5158
{
5259
browserName: 'MicrosoftEdge',
5360
platform: 'Windows 11',
54-
version: '103',
61+
version: '118',
5562
tunnelIdentifier,
5663
},
5764
{
5865
browserName: 'MicrosoftEdge',
5966
platform: 'Windows 11',
60-
version: '104',
67+
version: '115',
6168
tunnelIdentifier,
6269
},
6370
],

0 commit comments

Comments
 (0)