Commit f63dfa43 authored by aniket-engg's avatar aniket-engg Committed by Aniket

linting fix

parent 2d4d3ddf
......@@ -15,9 +15,7 @@ class addAtAddressInstance extends EventEmitter {
function addInstance (browser: NightwatchBrowser, address: string, isValidFormat: boolean, isValidChecksum: boolean, callback: VoidFunction) {
browser.clickLaunchIcon('udapp').clearValue('.ataddressinput').setValue('.ataddressinput', address, function () {
if (!isValidFormat || !isValidChecksum)
browser.assert.elementPresent('button[id^="runAndDeployAtAdressButton"]:disabled')
else callback()
if (!isValidFormat || !isValidChecksum) { browser.assert.elementPresent('button[id^="runAndDeployAtAdressButton"]:disabled') } else callback()
})
}
......
......@@ -36,19 +36,19 @@ module.exports = {
})
},
// 'Debug Ballot / delegate': function (browser: NightwatchBrowser) {
// browser.pause(500)
// .click('*[data-id="txLoggerDebugButton0x41fab8ea5b1d9fba5e0a6545ca1a2d62fff518578802c033c2b9a031a01c31b3"]')
// .waitForElementVisible('*[data-id="buttonNavigatorJumpPreviousBreakpoint"]')
// // .clickLaunchIcon('debugger')
// .click('*[data-id="buttonNavigatorJumpPreviousBreakpoint"]')
// .pause(2000)
// .waitForElementVisible('#stepdetail')
// .goToVMTraceStep(79)
// .pause(1000)
// .checkVariableDebug('soliditystate', stateCheck)
// .checkVariableDebug('soliditylocals', localsCheck)
// },
'Debug Ballot / delegate': function (browser: NightwatchBrowser) {
browser.pause(500)
.click('*[data-id="txLoggerDebugButton0x41fab8ea5b1d9fba5e0a6545ca1a2d62fff518578802c033c2b9a031a01c31b3"]')
.waitForElementVisible('*[data-id="buttonNavigatorJumpPreviousBreakpoint"]')
// .clickLaunchIcon('debugger')
.click('*[data-id="buttonNavigatorJumpPreviousBreakpoint"]')
.pause(2000)
.waitForElementVisible('#stepdetail')
.goToVMTraceStep(79)
.pause(1000)
.checkVariableDebug('soliditystate', stateCheck)
.checkVariableDebug('soliditylocals', localsCheck)
},
'Access Ballot via at address': function (browser: NightwatchBrowser) {
browser.clickLaunchIcon('udapp')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment