我目前正在调用我的测试文件,例如test.coffee.unit
单元测试......(产生输出test.spec.unit
)
但是,当调用require "test.coffee.unit"
node 时,会将文件解释为 javascript 并且无法评估。我一直在查看文档和https://github.com/jashkenas/coffee-script/blob/master/lib/coffee-script/coffee-script.js#L192看看我是否能找到办法,但是我没有看到任何看起来很有希望的东西。
我还查看了https://github.com/joyent/node/blob/master/lib/module.js#L347和http://nodejs.org/api/modules.html#modules_all_together看看我能做什么从中收集...
概括:
有没有办法注册.coffee.unit
或只是.unit
扩展,以便require
将其评估为 CoffeeScript?