vuejs-paginate
Version:
A simple pagination component for Vue.js
114 lines (90 loc) • 2.66 kB
JavaScript
// Karma configuration
// Generated on Mon Jan 30 2017 21:06:47 GMT+0800 (CST)
const webpack = require('webpack')
const webpackConfig = require('../webpack.config')
const merge = require('webpack-merge')
const path = require('path')
module.exports = function(config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '',
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['mocha', 'sinon-chai'],
// list of files / patterns to load in the browser
files: [
'./test.js'
],
// list of files to exclude
exclude: [
],
reporters: ['spec', 'coverage'],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
'./test.js': ['webpack']
},
webpack: {
resolve: {
extensions: ['', '.js', '.vue'],
alias: {
'src': path.resolve(__dirname, '../src/')
}
},
module: {
loaders: [
{
test: /\.vue$/,
loader: 'vue'
},
{
test: /\.js$/,
loader: 'babel',
include: __dirname,
exclude: /node_modules/
}
]
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
})
]
},
// web server port
port: 9876,
// enable / disable colors in the output (reporters and logs)
colors: true,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
plugins: [
'karma-webpack',
'karma-mocha',
'karma-sinon-chai',
'karma-phantomjs-launcher',
'karma-coverage',
'karma-spec-reporter'
],
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['PhantomJS'],
coverageReporter: {
dir: './coverage/',
reporters: [
{type: 'lcovonly', subdir: '.'},
{type: 'text-summary'}
]
},
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: false,
// Concurrency level
// how many browser should be started simultaneous
// concurrency: Infinity,
})
}