You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will require test updates, due to Spectron's switch to webdriverio v6. The webdriverio API changed substantially. For example this.app.client.getText(selector) must now be written as this.app.client.$(selector).then(_ => _.getText()).
Also, electron 10 will emit deprecation warnings, due to our need to disable allowRendererProcessReuse. electron/electron#18397
(electron) 'allowRendererProcessReuse' is deprecated and will be removed.
This is due to node-pty not yet supporting context aware modules: microsoft/node-pty#405
The text was updated successfully, but these errors were encountered:
starpit
added a commit
to starpit/kui
that referenced
this issue
Nov 12, 2020
This will require test updates, due to Spectron's switch to webdriverio v6. The webdriverio API changed substantially. For example
this.app.client.getText(selector)
must now be written asthis.app.client.$(selector).then(_ => _.getText())
.Also, electron 10 will emit deprecation warnings, due to our need to disable
allowRendererProcessReuse
. electron/electron#18397This is due to node-pty not yet supporting context aware modules: microsoft/node-pty#405
The text was updated successfully, but these errors were encountered: