我有以下testrunner.html
:摩卡初始化超時
<html>
<head>
<title>Specs</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="/content/css/mocha.css" />
<script>
function assert(expr, msg) {
if (!expr) throw new Error(msg || 'failed');
}
</script>
<script src="/client/lib/require.js" type="text/javascript" data-main="/client/specs/_runner.js"></script>
</head>
<body>
<div id="mocha"></div>
</body>
</html>
的_runner.js
看起來是這樣的:
// Configure RequireJS
require.config({
baseUrl: '/client',
urlArgs: "v=" + (new Date()).getTime()
});
// Require libraries
require(['require', 'lib/chai', 'lib/mocha'], function (require, chai) {
// Chai
assert = chai.assert;
should = chai.should();
expect = chai.expect;
// Mocha
mocha.setup('bdd');
// Require base tests before starting
require(['specs/stringcalculator.specs'], function (person) {
mocha.setup({ globals: ['hasCert'] });
// Start runner
if (window.mochaPhantomJS) {
mochaPhantomJS.run();
}
else { mocha.run(); }
});
});
的StringCalculator.specs.js
是這樣的:
define(['app/model/StringCalculator'], function() {
describe("StringCalculator", function() {
describe("when an empty string is passed in", function() {
it("returns 0", function() {
var result = StringCalculator.add("");
assert(result === 0);
});
});
describe("when a number is passed in", function() {
it("returns the number", function() {
var result = StringCalculator.add("2");
assert(result === 2);
});
});
describe("when string is passed in", function() {
it("returns NaN", function() {
var result = StringCalculator.add("a");
assert(isNaN(result));
});
});
describe("when '1,2' is passed in", function() {
it("returns 3", function() {
var result = StringCalculator.add("1,2");
assert(result === 3);
});
});
});
});
這是StringCalculator.js
本身(來自摩卡樣本):
define([], function() {
window.StringCalculator = StringCalculator = {
add: function(inputString) {
if (inputString === '') {
return 0;
}
var result = 0;
var inputStrings = inputString.split(',');
for (var i = 0; i < inputStrings.length; i++) {
result += parseInt(inputStrings[i]);
}
return result;
}
}
});
在調用testrunner.html
的瀏覽器中運行規格時,一切都按預期工作。 當在OS X上運行mocha-phantomjs client/specs/testrunner.html
,我得到以下錯誤:
Failed to start mocha: Init timeout
什麼可我在這裏失蹤?
我也試過mocha-phantomjs http://httpjs.herokuapp.com
,它的失敗與相同的錯誤。
更新: 如果我打電話mocha-phantomjs http://localhost:81/client/specs/testrunner.html
我也收到以下錯誤控制檯上:
RangeError: Maximum call stack size exceeded.
http://localhost:81/client/lib/chai.js?v=123423553533535:2601
Failed to start mocha: Init timeout
節點0.10.x用戶不完全泄氣 - 我敢肯定,這是真的在當時。但今天我在0.10.13上面的解決方案使用mochaPhantomJS.run()爲我工作。 – laurelnaiad 2013-08-31 04:55:37
我仍然會隨機超時(無雙關語)。使用最新的mocha-phantomjs等,超時時間爲10000. – Till 2014-02-03 18:21:56