nodeunitモジュールをcoffeescriptプロジェクト内で機能させようとしていますが、基本的なテストすら実行できないようです。これが私の例ですCoffeescriptrequire'nodeunit'
test = true
test2 = false
exports.testSomething = (test) ->
test.expect(1)
test.ok(true, "this should pass")
test.done()
exports.testSomethingElse = (test2) ->
test2.expect(1)
test2.ok(false, "this should fail")
test2.done()
残念ながら、'$ nodeunit example.coffee'を実行すると、エラー出力が表示されます。
example.coffee:4 exports.testSomething =(テスト)-> ^
module.js:296 throw err; ^ SyntaxError:予期しないトークン> at Module._compile(module.js:397:25)at Object..js(module.js:408:10)at Module.load(module.js:334:31)at Function._load (module.js:293:12)at require(module.js:346:19)at /usr/local/lib/node/nodeunit/lib/nodeunit.js:75:37 at / usr / local / lib / node /nodeunit/deps/async.js:508:13 at /usr/local/lib/node/nodeunit/deps/async.js:118:13 at /usr/local/lib/node/nodeunit/deps/async.js :134:9 at /usr/local/lib/node/nodeunit/deps/async.js:507:9
Node.jsを使用してCoffeescriptで簡単なテストを実行するのを手伝ってくれる人はいますか?
前もって感謝します