1
當我運行冰鎮nodeunit測試...如何運行大量冰鎮nodeunit測試
$ nodeunit path/to/file/file_name.iced
...這是確定。
當我跑了很多的咖啡腳本測試...
grunt.initConfig({
nodeunit: {
coffee: ['path/to/coffee/nodeunit/tests/**/*_test.coffee']
}
});
$ grunt nodeunit:coffee
...這是確定。 但是,當我嘗試運行設置的冰nodeunit測試與grunt nodeunit
...
grunt.initConfig({
nodeunit: {
iced: ['path/to/iced/nodeunit/tests/**/*_test.iced']
}
});
...有錯誤:Fatal error: Unexpected string
。貌似gruntjs
不明白iced coffeescript
。
那麼如何運行大量的結冰節點單元測試呢? 可能沒有grunt-contrib-nodeunit
,但是如何?