added support for skipping tests

This commit is contained in:
russa
2020-10-08 21:08:30 +02:00
parent 5b827d500d
commit 6918a2ed15
2 changed files with 23 additions and 4 deletions
+10 -1
View File
@@ -49,11 +49,15 @@ describe('Advanced HTTP e2e test suite', function () {
});
const defineTestForMocha = (test, index) => {
it(index + ': ' + test.description, async () => {
it(index + ': ' + test.description, async function() {
await clickNext(driver);
await validateTestIndex(driver, index);
await validateTestTitle(driver, test.description);
await waitToBeFinished(driver, test.timeout || 10000);
var skipped = await checkSkipped(driver);
if(skipped){
this.skip();
}
await validateResult(driver, test.validationFunc, targetInfo);
});
};
@@ -117,6 +121,11 @@ async function validateResult(driver, validationFunc, targetInfo) {
validationFunc(driver, result, targetInfo);
}
async function checkSkipped(driver) {
const result = await driver.safeExecute('app.lastResult');
return result.type === 'skipped';
}
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}