我们有一些简单的"这真的有效吗?#34;使用spectron和WebdriverIO测试电子应用程序。我们开始的示例代码来自
https://github.com/jwood803/ElectronSpectronDemo报告的{p> https://github.com/jwood803/ElectronSpectronDemo/issues/2,这些承诺的测试没有发现不匹配,所以我想我会添加一些额外的测试来找出为什么Chai没有在电子测试失败的地方应用程序的文本与预期的单元测试文本不匹配。让我们从非常简单的事情开始,其余的代码在https://github.com/drjasonharrison/ElectronSpectronDemo
describe('Test Example', function () {
beforeEach(function (done) {
app.start().then(function() { done(); } );
});
afterEach(function (done) {
app.stop().then(function() { done(); });
});
it('yes == no should fail', function () {
chai.expect("yes").to.equal("no");
});
it('yes == yes should succeed', function () {
chai.expect("yes").to.equal("yes");
});
第一次单元测试失败,第二次成功。
当我们将断言放入一个函数时,它仍会检测到失败:
it('should fail, but succeeds!?', function () {
function fn() {
var yes = 'yes';
yes.should.equal('no');
};
fn();
});
所以现在进入电子,webdriverio和光谱的世界,应用程序标题应该是" Hello World!",所以这应该失败,但它通过了:
it('tests the page title', function () {
page.getApplicationTitle().should.eventually.equal("NO WAY");
});
嗯,让我们尝试更熟悉的测试:
it('should fail, waitUntilWindowLoaded, yes != no', function () {
app.client.waitUntilWindowLoaded().getTitle().then(
function (txt) {
console.log('txt = ' + txt);
var yes = 'yes';
yes.should.equal('no');
}
);
});
输出:
✓ should fail, waitUntilWindowLoaded, yes != no
txt = Hello World!
成功了吗?什么?为什么?怎么样?
答案 0 :(得分:2)
您将看到需要从每个测试中返回承诺。这对于异步chai / mocha测试来说是典型的:
it('tests the page title', function () {
return page.getApplicationTitle().should.eventually.equal("NO WAY");
});
如果你这样做,那么实际上正确评估了chai测试。