-
Notifications
You must be signed in to change notification settings - Fork 419
chore: update webdriverio to v8 #3575
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
Conversation
@@ -47,7 +47,7 @@ const wdSuites = suites.reduce((seed, suite) => { | |||
exports.config = { | |||
logLevel: 'warn', | |||
|
|||
specs: ['./src/**/*.spec.js'], | |||
specs: ['../src/**/*.spec.js'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now relative to the config file
@@ -17,7 +17,7 @@ module.exports = function (browser) { | |||
browser.addCommand( | |||
'focus', | |||
function () { | |||
return this.execute(function (target) { | |||
return browser.execute(function (target) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this just happened to work – execute
should be on the browser
, not this
(which is an element).
/nucleus test |
/nucleus ignore --reason 'downstream is failing for unrelated reason' |
/nucleus test |
/nucleus test |
/nucleus ignore --reason 'downstream is failing due to flapper' |
Details
Updates WebDriverio to v8, and fixes some minor breaking changes in our tests.
Does this pull request introduce a breaking change?
Does this pull request introduce an observable change?