Try any type to fix test

pull/343/head
ioedeveloper 4 years ago
parent c7ec853922
commit 1004777fd1
  1. 8
      apps/remix-ide-e2e/src/commands/getAddressAtPosition.ts

@ -4,7 +4,7 @@ import EventEmitter from "events"
class GetAddressAtPosition extends EventEmitter {
command (this: NightwatchBrowser, index: number, cb: (pos: string) => void): NightwatchBrowser {
this.api.perform((done) => {
getAddressAtPosition(this.api, index, (pos) => {
getAddressAtPosition(this.api, index, (pos: string) => {
done()
cb(pos)
this.emit('complete')
@ -14,7 +14,7 @@ class GetAddressAtPosition extends EventEmitter {
}
}
function getAddressAtPosition (browser: NightwatchBrowser, index: number, callback: (pos: string) => void) {
function getAddressAtPosition (browser: NightwatchBrowser, index: number, callback: (pos: any) => void) {
browser.waitForElementPresent('*[data-shared="universalDappUiInstance"]')
.execute(function (index) {
const deployedContracts = document.querySelectorAll('*[data-shared="universalDappUiInstance"]')
@ -22,9 +22,7 @@ function getAddressAtPosition (browser: NightwatchBrowser, index: number, callba
return id.replace('instance', '')
}, [index], function (result) {
const pos = typeof result.value === 'string' ? result.value : null
callback(pos)
callback(result.value)
})
}

Loading…
Cancel
Save