我一直在与这个问题作斗争一段时间,似乎无法找到解决方案。在服务器上使用NightmareJS + mocha运行测试时,它们会失败。我尝试使用:
DEBUG=nightmare:* env ENV=staging mocha --harmony tests.js
但是没有看到任何日志/操作错误等等。只是测试失败(超时)。
Error: timeout of 30000ms exceeded. Ensure the done() callback is being called in this test.
我只能在没有NightmareJS的情况下运行Mocha测试,而且它们工作正常。此外,当在我的本地计算机上运行nighmareJS测试时,它们正在运行,没有任何问题。
NightmareJS安装在服务器上,package.json内容:
"dependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"mocha-generators": "^1.2.0",
"mocha-bamboo-reporter": "*",
"nightmare": "^2.2.0",
"nodeunit" : "~0.8"
}
以下是测试的代码:
require('mocha-generators').install();
var Nightmare = require('nightmare');
var expect = require('chai').expect;
var url = null;
var options = {
show: false,
'webPreferences': {
partition: 'something_xyz'
}
};
if (process.env.ENV === 'staging') {
console.log("Running tests against staging environment");
url = 'https://staging.something.com/app/';
} else {
console.log("Running tests against local environment");
url = 'http://localhost:8080/app/';
}
describe('Nightmare JS tests', function() {
this.timeout(30000);
describe('base functionality', function() {
var nightmare;
before(function*() {
nightmare = Nightmare(options);
});
after(function*() {
var endTest = yield nightmare
.end()
});
it('Should be able to login', function*() {
var result = yield nightmare
.goto(url)
.wait('img.google-login-btn')
.click('img.google-login-btn')
.wait('div.main-content.row h4')
.wait(1000)
.evaluate(function () {
return document.querySelector('div.main-content.row h4').innerText;
})
expect(result).to.equal("Logged in!");
});
// here are the rest of the tests
});
});
我该如何调试?当我在服务器上运行时,我不能使用show:true选项。
答案 0 :(得分:1)
您可能在无头环境中遇到/梦魇的一般问题。有关详细信息,请参阅https://github.com/segmentio/nightmare/issues/224。最简单的解决方案是安装Xvfb并使用xvfb-run mocha ...
您还可以传递电子的DEBUG标志,例如DEBUG=nightmare*,electron*
,并获得额外的调试输出,这可能有助于在这种情况下,Nightmare和Electron从未成功启动。
答案 1 :(得分:0)
这是一个老问题,但也许它可以提供帮助。 要在无头环境中运行电子,你可能需要一些东西。
看看这个Dockerfile:https://github.com/aheuermann/docker-electron/blob/master/7/Dockerfile
这是您需要的最小库。 并开始编写脚本:
Xvfb -ac -screen scrn 1280x2000x24 :9.0 &
export DISPLAY=:9.0
DEBUG=* node src/index.js