你可以帮我解决mocha测试中的同步问题吗?
我在mocha中进行了此测试,我使用了wd-sync和resemble个包。
wd-sync是为了避免Promises和回调地狱而且它是很棒的包,但我发现它有一些问题。它不等待类似,所以这部分是在测试用例之外执行的。我尝试添加类似于Promise,但没有成功,所以现在我没有想法。
这是来自mocha的 log - 正如您所看到的,console.log(inside)
是在测试用例PROMISE_002
之外执行的,测试通过,但它应该失败。 After all hook
失败,因为在此步骤中执行expected
。
Screenshot functionality
1
2
3
4
✓ PROMISE_002 (3714ms)
inside
inside2
1) "after all" hook
1 passing (16s)
1 failing
1) Screenshot functionality "after all" hook:
Uncaught AssertionError: expected '0.01' to equal 5
我的测试:
it.only('PROMISE_002', wrap(function(){
const date = new Date();
const path = `${date.getFullYear()}${date.getMonth()}${date.getDate()}`;
const dir = `archiveServer/${path}`;
if (!fs.existsSync(dir)) {
fs.mkdirSync(dir);
}
console.log(1);
driver.saveScreenshot(`archiveServer/baseline/PROMISE_002.png`);
console.log(2);
driver.saveScreenshot(`${dir}/PROMISE_002.png`);
console.log(3);
resemble(`${dir}/PROMISE_002.png`)
.compareTo('archiveServer/baseline/PROMISE_002.png')
.onComplete(function (data) {
//if (data.misMatchPercentage > 0.5) {
console.log('inside');
data.getDiffImage()
.pack()
.pipe(fs.createWriteStream(`${dir}/PROMISE_002-diff.png`));
console.log('inside2');
expect(data.misMatchPercentage).to.equal(5);
});
console.log('4');
}));