当我运行 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
。
那么如何运行大量的冰节点单元测试呢?可能没有grunt-contrib-nodeunit
,但如何?