StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.1 KiB
52 lines
1.1 KiB
/* eslint-env node, mocha */
|
|
|
|
var path = require('path')
|
|
|
|
module.exports = config => {
|
|
config.set({
|
|
browsers: ['PhantomJS'],
|
|
frameworks: ['mocha', 'sinon-chai'],
|
|
reporters: ['spec', 'coverage'],
|
|
files: ['specs/*.spec.js'],
|
|
preprocessors: {
|
|
'./specs/*.spec.js': ['webpack', 'sourcemap']
|
|
},
|
|
webpack: {
|
|
devtool: '#inline-source-map',
|
|
resolve: {
|
|
extensions: ['.js', '.vue'],
|
|
alias: {
|
|
'vue$': 'vue/dist/vue.esm.js',
|
|
'@': path.resolve(__dirname, '../src')
|
|
}
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.vue$/,
|
|
loader: 'vue-loader',
|
|
options: {
|
|
esModule: false
|
|
}
|
|
},
|
|
{
|
|
test: /\.js$/,
|
|
loader: 'babel-loader',
|
|
exclude: /node_modules/
|
|
}
|
|
]
|
|
}
|
|
},
|
|
webpackMiddleware: {
|
|
noInfo: true
|
|
},
|
|
coverageReporter: {
|
|
dir: './coverage',
|
|
reporters: [
|
|
{ type: 'lcov', subdir: '.' },
|
|
{ type: 'text-summary' }
|
|
]
|
|
},
|
|
singleRun: true
|
|
})
|
|
}
|
|
|