Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Relocate Tests #897

Merged
merged 6 commits into from
Apr 29, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/ui/wdio.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ exports.config = {
if (webdriverHelpers.hasOwnProperty(extension) && typeof webdriverHelpers[extension] === 'function') {
browser.addCommand(extension, webdriverHelpers[extension].bind(browser));
} else {
console.warning('Not Adding: ', extension, typeof webdriverHelpers[extension]);
process.stderr.write('Not Adding: ' + extension + typeof webdriverHelpers[extension]);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that this code will produce different output to the previous code.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, however, this is for the most part only for "developers" when running this and should rearely if ever be hit.

}
}
// eslint-disable-next-line global-require
Expand Down