npm测试未获取Nodeunit coffeescript测试文件

时间:2014-09-11 02:00:30

标签: unit-testing coffeescript npm nodeunit

我在./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测试文件?

0 个答案:

没有答案