ReferenceError:找不到变量:module - Grunt Jasmine

时间:2015-09-12 19:54:09

标签: gruntjs jasmine phantomjs grunt-contrib-jasmine

我正在使用这个Grunt文件并设置了Jasmine规范。

grunt文件显然使用了module.export语法,但jasmine任务在phantom.js无头浏览器中运行。因此浏览器无法识别module.export语法。

我只是不知道怎么解决这个问题?

module.exports = function (grunt) {
grunt.initConfig({
    jasmine: {
        src: '*.js',
        options: {
            specs: '*Spec.js',
            outfile: '_SpecRunner.html'
        }
    },
    jshint: {
        files: ['Gruntfile.js', '*.js'],
    },
    watch: {
        files: ['<%= jshint.files %>'],
        tasks: ['jshint']
    }
});

grunt.loadNpmTasks('grunt-contrib-jasmine');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');

grunt.registerTask('default', ['jshint']);
grunt.registerTask('watch', ['watch']);
grunt.registerTask('test', ['jasmine']);

};

这是我的错误:

>> ReferenceError: Can't find variable: module at
>> Gruntfile.js:1

0 个答案:

没有答案