datamodel
Version:
Relational algebra compliant in-memory tabular data store
116 lines (113 loc) • 3.88 kB
JavaScript
module.exports = function (config) {
config.set({
basePath: './',
frameworks: ['mocha', 'chai'],
files: [
'test.webpack.js',
],
webpack: {
mode: 'development',
devtool: 'inline-source-map',
module: {
rules: [
// instrument only testing sources with Istanbul
{
test: /\.js$/,
use: {
loader: 'babel-loader',
query: {
presets: ['es2015'],
},
},
exclude: /node_modules/,
},
{
test: /\.js$|\.jsx$/,
use: {
loader: 'istanbul-instrumenter-loader',
options: { esModules: true },
},
enforce: 'pre',
exclude: [
/node_modules/,
/\.spec\.js$/,
/src\/utils\/date-time-formatter\.js/,
/src\/utils\/extend2\.js/,
/src\/index\.js/
]
},
],
},
},
preprocessors: {
// add webpack as preprocessor
'test.webpack.js': ['webpack'],
},
exclude: [
'**/*.swp',
],
coverageIstanbulReporter: {
dir: 'coverage/',
thresholds: {
// set to `true` to not fail the test command when
// thresholds are not met
emitWarning: false,
// thresholds for all files
global: {
statements: 80,
lines: 80,
branches: 80,
functions: 80,
},
// thresholds per file
each: {
statements: 80,
lines: 80,
branches: 80,
functions: 80,
overrides: {
'baz/component/**/*.js': {
statements: 80,
},
},
},
},
reports: ['html', 'lcov', 'text-summary', 'lcovonly'],
fixWebpackSourcePaths: true,
reporters: [
{ type: 'text' },
{ type: 'html', subdir: 'report-html', file: 'report.html' },
{ type: 'lcov', subdir: 'report-lcov', file: 'report.txt' },
{ type: 'lcovonly', subdir: '.' },
],
},
reporters: ['spec', 'coverage-istanbul'],
specReporter: {
// limit number of lines logged per test
maxLogLines: 5,
// do not print error summary
suppressErrorSummary: true,
// do not print information about failed tests
suppressFailed: false,
// do not print information about passed tests
suppressPassed: false,
// do not print information about skipped tests
suppressSkipped: true,
// print the time elapsed for each spec
showSpecTiming: false,
},
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: false,
browsers: ['ChromeHeadlessNoSandbox'],
customLaunchers: {
ChromeHeadlessNoSandbox: {
base: 'ChromeHeadless',
flags: ['--no-sandbox'],
},
},
singleRun: true,
concurrency: Infinity,
});
};