dexie-react-hooks
Version:
React hooks for reactive data fetching using Dexie.js
18 lines (15 loc) • 475 B
JavaScript
// Include common configuration
const {karmaCommon, getKarmaConfig, defaultBrowserMatrix} = require('../../../test/karma.common');
module.exports = function (config) {
const cfg = getKarmaConfig({
// Be fine with testing on local Firefox only (no browserstack). This lib is not sensitive to browser differences.
ci: ["Firefox"],
pre_npm_publish: ["Firefox"]
}, {
basePath: '..',
files: [
'test/dist/bundle.js'
]
});
config.set(cfg);
}