私のモカテストで私のクラスを認識させる(ブラウザでモカを動かす)ための規約は何ですか?両方が閉鎖に包まれていない、どちらもグローバルスコープにある...ブラウザでCSクラスをMochaでテストしますか?
monkey.spec.coffee
describe "Monkey", ->
it "adds two to the given number", ->
expect Monkey.add2(4).to.equal(6)
monkey.coffee
されているので、class Monkey
test_runner.html
<!DOCTYPE html>
<html>
<head>
<title>Mocha Test Runner</title>
<meta charset="utf8">
<link rel="stylesheet" href="mocha.css">
<script src="mocha.js"></script>
<script src="expect.js"></script>
<script>
mocha.setup('bdd');
</script>
<!-- Load in files under test -->
<script src="monkey.js"></script>
<!-- Load in spec files -->
<script src="monkey.spec.js"></script>
</head>
<body>
<div id="mocha"></div>
<script>
mocha.run();
</script>
</body>
</html>
[CoffeeScriptで定義されたクラスはJasmineの仕様では見つかりません](http://stackoverflow.com/questions/8310329/classes-defined-in-coffeescript-not-found-by-jasmine-specs) –