我在./package.json
:
"scripts": {
"test": "nodeunit test"
}
和此文件./test/log.coffee
module.exports =
'Test logging': (test) ->
test.expect(1)
console.log("yeah")
test.ok(true)
test.done()
当我执行npm test
时,我得到了这个: OK:0断言(1ms)
然而,当我尝试这些时运行正常:
nodeunit test
。./test/log.coffee
转换为Javascript ./test/log.js
并执行npm test
如何让我的npm test
获取coffeescript测试文件?