Skip to content

Commit

Permalink
test(ci): update browserstack browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
JamieMason committed Dec 23, 2018
1 parent 62ebe0a commit 4f91a31
Show file tree
Hide file tree
Showing 12 changed files with 605 additions and 515 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ matrix:
node_js:
- 10.13.0
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./codeclimate-test-reporter
- curl -L
https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64
> ./codeclimate-test-reporter
- chmod +x ./codeclimate-test-reporter
- ./codeclimate-test-reporter before-build
- npm run build
script:
- npm run lint
- npm run test:jest
- npm run test
after_script:
- ./codeclimate-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
2 changes: 1 addition & 1 deletion karma/browserstack-android.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const baseConfig = require('./browserstack.conf');
module.exports = function(config) {
baseConfig({
set(base) {
base.browsers = ['android-7.0', 'android-7.1', 'android-8.0'];
base.browsers = ['android-8.0', 'android-8.1', 'android-9.0'];
config.set(base);
}
});
Expand Down
2 changes: 1 addition & 1 deletion karma/browserstack-chrome.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const baseConfig = require('./browserstack.conf');
module.exports = function(config) {
baseConfig({
set(base) {
base.browsers = ['chrome-61.0', 'chrome-62.0', 'chrome-63.0'];
base.browsers = ['chrome-69.0', 'chrome-70.0', 'chrome-71.0'];
config.set(base);
}
});
Expand Down
2 changes: 1 addition & 1 deletion karma/browserstack-firefox.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const baseConfig = require('./browserstack.conf');
module.exports = function(config) {
baseConfig({
set(base) {
base.browsers = ['firefox-55.0', 'firefox-56.0', 'firefox-57.0'];
base.browsers = ['firefox-62.0', 'firefox-63.0', 'firefox-64.0'];
config.set(base);
}
});
Expand Down
2 changes: 1 addition & 1 deletion karma/browserstack-ie.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const baseConfig = require('./browserstack.conf');
module.exports = function(config) {
baseConfig({
set(base) {
base.browsers = ['ie-9.0', 'ie-10.0', 'ie-11.0'];
base.browsers = ['edge-16.0', 'edge-17.0', 'edge-18.0'];
config.set(base);
}
});
Expand Down
9 changes: 8 additions & 1 deletion karma/browserstack-ios.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,14 @@ const baseConfig = require('./browserstack.conf');
module.exports = function(config) {
baseConfig({
set(base) {
base.browsers = ['iphone-10.3'];
base.browsers = [
'iphone-10.3',
'iphone-11.0',
'iphone-11.2',
'iphone-11.4',
'iphone-12.0',
'iphone-12.1'
];
config.set(base);
}
});
Expand Down
2 changes: 1 addition & 1 deletion karma/browserstack-opera.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const baseConfig = require('./browserstack.conf');
module.exports = function(config) {
baseConfig({
set(base) {
base.browsers = ['opera-12.16'];
base.browsers = ['opera-12.16', 'opera-12.15'];
config.set(base);
}
});
Expand Down
2 changes: 1 addition & 1 deletion karma/browserstack-safari.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const baseConfig = require('./browserstack.conf');
module.exports = function(config) {
baseConfig({
set(base) {
base.browsers = ['safari-9.1', 'safari-10.1', 'safari-11.0'];
base.browsers = ['safari-11.1', 'safari-12.0'];
config.set(base);
}
});
Expand Down
Loading

0 comments on commit 4f91a31

Please sign in to comment.