add slight pause to standard blocking tests to make test results more consistant
This commit is contained in:
parent
ae18079a67
commit
710e1847d1
2 changed files with 3 additions and 2 deletions
File diff suppressed because one or more lines are too long
|
@ -74,7 +74,8 @@ module.exports.promiseSetBlockingRules = function (driver, standardsToBlock) {
|
||||||
driver.setContext(Context.CONTENT);
|
driver.setContext(Context.CONTENT);
|
||||||
|
|
||||||
return this.promiseExtensionConfigPage(driver)
|
return this.promiseExtensionConfigPage(driver)
|
||||||
.then(driver.executeAsyncScript(setStandardsScript));
|
.then(driver.executeAsyncScript(setStandardsScript))
|
||||||
|
.then(() => module.exports.pause(1000));
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.promiseGetDriver = function () {
|
module.exports.promiseGetDriver = function () {
|
||||||
|
|
Loading…
Reference in a new issue