私test/
のプロジェクトはモカテストでいっぱいです:
test/
├── a.coffee
└── b.coffee
言う、a.coffee
です
console.log 'Executing A test!'
global.foo = 'FOO'
そしてb.coffee
_
console.log 'Executing B test!'
console.log 'Expecting foo not defined:', assert.equal(foo, undefined)
モカを実行する場合:
$ mocha --compilers coffee:coffee-script test/*
Executing A test!
Executing B test!
Expecting foo not defined: false
テストは同じグローバルオブジェクトを共有しているようです(これは避けたいです)...
各テストを個別に実行する方法はありますか?
ありがとうございました。