Skip to content

Commit

Permalink
Fixed linting issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
dalin- authored Nov 8, 2019
1 parent 1564e13 commit da358ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion capture/engine_scripts/puppet/clickAndHoverHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports = async (page, scenario) => {
if (scrollToSelector) {
await page.waitFor(scrollToSelector);
await page.evaluate(scrollToSelector => {
document.querySelector(scrollToSelector).scrollIntoView({behavior: "smooth"});
document.querySelector(scrollToSelector).scrollIntoView({ behavior: 'smooth' });
}, scrollToSelector);
}
};

0 comments on commit da358ea

Please sign in to comment.