2
我試圖用摩卡測試我的.js類(不是一個節點)。我面臨一個問題,因爲我不知道如何導入它,因爲它不包含module.exports或其他任何東西。所以,我的.js就像用摩卡測試客戶端js
var User = function() {
this.add = function() { ... }
this.update = function() { ... }
}
我想測試其功能之一測試
var User = require('path/to/user.js');
describe('User object', function() {
it('should add some stuff', function() {
var user = new User();
...
})
});
這(有或無「VAR用戶=」)預見的給我「不確定是不是一個功能「。我錯過了什麼? 謝謝。
[我如何用Mocha測試'正常'(非節點特定)JavaScript函數?](http://stackoverflow.com/questions/10204021/how-do-i-test-normal-non -node-specific-javascript-functions-with-mocha) – mfreitas
謝謝@mfreitas就是這樣 –