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
が、どうですか?