Skip to content

Commit e13b930

Browse files
committed
Run addons-tests on chrome as well
1 parent 6dc3fe9 commit e13b930

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

addons/Dexie.Observable/test/integration/karma.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ const {karmaCommon, getKarmaConfig, defaultBrowserMatrix} = require('../../../..
33

44
module.exports = function (config) {
55
const browserMatrixOverrides = {
6-
// Be fine with testing on local travis firefox for both pull requests and pushs.
7-
ci: ["Firefox"],
6+
// Be fine with testing on local travis firefox + browserstack chrome, latest supported.
7+
ci: ["Firefox", "bs_chrome_latest_supported"],
88
// IE indexedDB hangs sporadically. Avoid it on integration tests to prohibit the
99
// likeliness of having to restart the travis builds over and over. We're testing
1010
// it on the dexie main suite. That's enough.

addons/Dexie.Observable/test/unit/karma.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ const {karmaCommon, getKarmaConfig, defaultBrowserMatrix} = require('../../../..
33

44
module.exports = function (config) {
55
const browserMatrixOverrides = {
6-
// Be fine with testing on local travis firefox.
7-
ci: ["Firefox"],
6+
// Be fine with testing on local travis firefox + browserstack chrome, latest supported.
7+
ci: ["Firefox", "bs_chrome_latest_supported"],
88
// IE indexedDB hangs sporadically. Be fine with testing it once on Dexie main suite.
99
pre_npm_publish: defaultBrowserMatrix.pre_npm_publish.filter(b => !/bs_ie/i.test(b))
1010
};

addons/Dexie.Syncable/test/integration/karma.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ const {karmaCommon, getKarmaConfig, defaultBrowserMatrix} = require('../../../..
33

44
module.exports = function (config) {
55
const browserMatrixOverrides = {
6-
// Be fine with testing on local travis firefox for both pull requests and pushs.
7-
ci: ["Firefox"],
6+
// Be fine with testing on local travis firefox + browserstack chrome, latest supported.
7+
ci: ["Firefox", "bs_chrome_latest_supported"],
88
// IE indexedDB hangs sporadically. Avoid it on integration tests to prohibit the
99
// likeliness of having to restart the travis builds over and over. We're testing
1010
// it on the dexie main suite. That's enough.

addons/Dexie.Syncable/test/unit/karma.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ const {karmaCommon, getKarmaConfig, defaultBrowserMatrix} = require('../../../..
33

44
module.exports = function (config) {
55
const browserMatrixOverrides = {
6-
// Be fine with testing on local travis firefox.
7-
ci: ["Firefox"],
6+
// Be fine with testing on local travis firefox + browserstack chrome, latest supported.
7+
ci: ["Firefox", "bs_chrome_latest_supported"],
88
// IE indexedDB hangs sporadically. Be fine with testing it once on Dexie main suite.
99
pre_npm_publish: defaultBrowserMatrix.pre_npm_publish.filter(b => !/bs_ie/i.test(b))
1010
};

0 commit comments

Comments
 (0)