0

我必须使用 grunt 框架对 JavaScript 文件运行测试。

只需要任何简单的示例即可,目标文件 ( /test/filename.js) 依赖于另外一个文件。

4

1 回答 1

0

基本上你必须使用 grunt-execute 命令。

这是解释:https ://www.npmjs.org/package/grunt-execute

简而言之,这是您应该针对您的特定要求执行的操作:

module.exports = function(grunt) {

   grunt.initConfig({

    execute: {
        simple_target: {
            // execute javascript files in a node child_process
            src: ['filename.js']
        }

    }
})


grunt.loadNpmTasks('grunt-execute');
grunt.registerTask('default', ['execute']);

}

并且,

"grunt": "~0.4.4",
 "grunt-execute": "~0.1.5" 

应该存在于 package.json 中,然后只需执行 npm install

于 2014-04-23T10:23:59.040 回答