@linx-impulse/engage-wishlist-sdk-js
Version:
Linx Impulse Engage Wishlist SDK
25 lines (23 loc) • 514 B
JavaScript
const webpackConfig = require('./webpack.config');
module.exports = (config) => {
config.set({
basePath: '',
frameworks: ['mocha', 'sinon-chai'],
files: [
'./test/**/*.js',
],
exclude: [],
preprocessors: {
'./test/**/*.js': ['webpack'],
},
webpack: webpackConfig,
reporters: ['mocha'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['ChromeHeadless'],
singleRun: true,
concurrency: Infinity,
});
};