1

iced nodeunit テストを実行すると...

$ 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