chore: auto fix some indentations

This commit is contained in:
Sefa Ilkimen
2020-10-13 00:22:42 +02:00
parent fcedfae1ac
commit 6a60058fc6
3 changed files with 16 additions and 14 deletions
+4 -2
View File
@@ -49,13 +49,15 @@ describe('Advanced HTTP e2e test suite', function () {
});
const defineTestForMocha = (test, index) => {
it(index + ': ' + test.description, async function() {
it(index + ': ' + test.description, async function () {
await clickNext(driver);
await validateTestIndex(driver, index);
await validateTestTitle(driver, test.description);
await waitToBeFinished(driver, test.timeout || 10000);
const skipped = await checkSkipped(driver);
if(skipped){
if (skipped) {
this.skip();
} else {
await validateResult(driver, test.validationFunc, targetInfo);