当我运行iced nodeunit test ...
$ nodeunit path/to/file/file_name.iced
......没关系。
当我进行大量的咖啡脚本测试时......
grunt.initConfig({
nodeunit: {
coffee: ['path/to/coffee/nodeunit/tests/**/*_test.coffee']
}
});
$ grunt nodeunit:coffee
......没关系。
但是当我尝试用grunt nodeunit
...
grunt.initConfig({
nodeunit: {
iced: ['path/to/iced/nodeunit/tests/**/*_test.iced']
}
});
......得到错误:Fatal error: Unexpected string
。看似gruntjs
不理解iced coffeescript
。
那么如何运行大量的iced nodeunit测试呢?
可能没有grunt-contrib-nodeunit
,但是怎么样?