Skip to content

Commit

Permalink
Merge branch 'develop' into feature/CMPDC-1035
Browse files Browse the repository at this point in the history
  • Loading branch information
italomarcel committed Nov 6, 2018
2 parents b0418cd + 1c46cb9 commit fa79600
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 49 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ lerna-debug.log

# nightwatch
reports
bin
bin
76 changes: 28 additions & 48 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const component = 'sling-web-component-brand-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-card';
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 fa79600

Please sign in to comment.