我casperjs test
在执行后退出时遇到问题,我必须按 CTL-C 才能退出执行。我在 OSX 10.7 和 casperjs 1.1 开发。
为了测试这不是我的代码,我只是从文档中复制了这个示例:
var casper = require("casper").create();
function Cow() {
this.mowed = false;
this.moo = function moo() {
this.mowed = true; // mootable state: don't do that at home
return 'moo!';
};
}
casper.test.begin('Cow can moo', 2, function suite(test) {
var cow = new Cow();
test.assertEquals(cow.moo(), 'moo!');
test.assert(cow.mowed);
test.done();
});
我得到以下输出
casperjs test cow-test.js
Test file: cow-test.js
# Cow can moo
PASS Subject equals the expected value
PASS Subject is strictly true
然后我必须点击 CTL-C 来停止执行。我错过了什么来停止执行吗?