我正在尝试使用业力和茉莉花在我的 VueJS 项目中实现一些测试。我可以启动基本测试,例如:
describe('canary', function () {
// asserting JavaScript options
it('should run', function () {
expect(true).toBe(true)
})
it('should run 2', function () {
expect(false).toBe(false)
})
})
返回(我还不允许在我的帖子上显示图像):
但是在测试我的组件时(所以当我需要它们时)它对我说:
PhantomJS 2.1.1 (Mac OS X 0.0.0) 错误 ReferenceError: Can't find variable: require at history.spec.js:1
这是我的 karma.conf.js:
module.exports = function(config) {
var tests = './**/*.js';
config.set({
frameworks: ['jasmine'],
files: [tests],
reporters: ['dots'],
singleRun: true,
autoWatch: false,
browsers: ['PhantomJS'],
preprocessors: {
tests: ['webpack'],
'../src/main.js': ['webpack']
},
webpack: {
module: {
loaders: [
{ test: /\.js/, exclude: /node_modules/, loader: 'babel-loader' }
]
},
watch: true
},
webpackServer: {
noInfo: true
}
});
};
这是我的测试文件:
var Vue = require('vue')
var ComponentA = require('../src/Log.vue')
describe('Log.vue', function () {
// asserting JavaScript options
it('should have correct message', function () {
expect(ComponentA.data().msg).toBe('Hello from Log!')
})
})
编辑- 新的 karma.conf.js 文件