1

当我运行 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,但如何?

4

1 回答 1

1

grunt-contrib-nodeunit 支持冰咖啡(请参阅此问题

您的测试代码似乎不是有效的冰咖啡!

于 2013-08-27T15:50:08.240 回答