add slight pause to standard blocking tests to make test results more consistant

This commit is contained in:
Peter Snyder 2017-10-23 03:33:57 -05:00
parent ae18079a67
commit 710e1847d1
2 changed files with 3 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -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 () {