Skip to content

Commit 1098618

Browse files
ci: temporarily remove iOS 16 from the test matrix
Tests iPhone and iPad 16 are currently failing. Saucelabs error message: > An unknown server-side error occurred while processing the command. Original error: W3C capabilities should be provided It might be time to migrate from zuul (https://github.com/defunctzombie/zuul).
1 parent 2d70813 commit 1098618

File tree

1 file changed

+27
-4
lines changed

1 file changed

+27
-4
lines changed

zuul.config.js

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
'use strict';
22

3-
const browsers = require('socket.io-browsers');
4-
53
const webpackConfig = require('./support/prod.config.js');
64

75
webpackConfig.module.rules.push({
@@ -47,5 +45,30 @@ if (process.env.CI === 'true') {
4745
};
4846
}
4947

50-
const isPullRequest = process.env.TRAVIS_PULL_REQUEST && process.env.TRAVIS_PULL_REQUEST !== 'false';
51-
zuulConfig.browsers = isPullRequest ? browsers.pullRequest : browsers.all;
48+
zuulConfig.browsers = [
49+
{
50+
name: 'chrome',
51+
version: 'latest'
52+
}, {
53+
name: 'firefox',
54+
version: 'latest'
55+
}, {
56+
name: 'internet explorer',
57+
version: '9..11'
58+
}, {
59+
name: 'safari',
60+
version: 'latest'
61+
}, {
62+
name: 'iphone',
63+
version: '15.4' // temporary fix
64+
}, {
65+
name: 'android',
66+
version: '5.1..6.0'
67+
}, {
68+
name: 'ipad',
69+
version: '15.4' // temporary fix
70+
}, {
71+
name: 'MicrosoftEdge',
72+
version: 'latest'
73+
}
74+
];

0 commit comments

Comments
 (0)