Skip to content

Commit

Permalink
Merge fa79600 into 1c46cb9
Browse files Browse the repository at this point in the history
  • Loading branch information
renanrbs committed Nov 6, 2018
2 parents 1c46cb9 + fa79600 commit af072f5
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const component = 'sling-web-component-icon';
const customCode = false;

module.exports = {
main: (browser) => {
browser.url(`http://localhost:8777/packages/${component}/${customCode ? 'public/regression' : 'public'}/index.html`)
.saveScreenshot(`./reports/${component}/${component}.png`)
.end();
},
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const component = 'sling-web-component-list';
const customCode = false;

module.exports = {
main: (browser) => {
browser.url(`http://localhost:8777/packages/${component}/${customCode ? 'public/regression' : 'public'}/index.html`)
.saveScreenshot(`./reports/${component}/${component}.png`)
.end();
},
};

0 comments on commit af072f5

Please sign in to comment.