我正在尝试使用 mocha-phantomjs 起步,但我似乎在要求方面遇到了障碍。我希望其他人能看到我做错了什么。
$ mocha-phantomjs test/index.html
My Site
1) server should be running
Error: Script error for: webpage
http://requirejs.org/docs/errors.html#scripterror
有问题的文件相当小:
https://gist.github.com/cobaltroad/6675855
特别是规范脚本:
test.spec.js
describe("My Site", function() {
it("server should be running", function(done) {
require(['webpage'], function(webpage) {
var page = webpage.create();
page.open("http://localhost:8080/", function() {
var title = page.evaluate(function () {
return document.title;
});
title.should.eql('My Title');
console.log("Title: " + title);
phantom.exit();
done();
});
});
}); // server should be running
});
我已经尝试了各种形式的定义/要求,但我无法完全正确。