2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00
Files
vue-select/karma.conf.js
T
2016-03-01 21:07:16 -08:00

21 lines
568 B
JavaScript

// https://github.com/Nikku/karma-browserify
module.exports = function (config) {
config.set({
browsers: ['PhantomJS'],
frameworks: ['browserify', 'jasmine'],
files: ['test/unit/**/*.js'],
reporters: ['spec'],
preprocessors: {
'test/unit/**/*.js': ['browserify']
},
browserify: {
debug: true,
// needed to enable mocks
plugin: [require('proxyquireify').plugin]
},
// if you want to continuously re-run tests on file-save,
// replace the following line with `autoWatch: true`
singleRun: true
})
}