Skip to content

Commit b4a242f

Browse files
authored
Merge pull request #356 from abhishek-lambda/AT-281
AT-281async await
2 parents 4fd295f + 1625243 commit b4a242f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

accessibility/scanner/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ commandsToOverride.forEach((command) => {
110110
}
111111

112112

113-
return originalFn(url, options).then(() => {
114-
processAccessibilityReport(url);
113+
return originalFn(url, options).then(async () => {
114+
await processAccessibilityReport(url);
115115
})
116116

117117
});

0 commit comments

Comments
 (0)