pull/719/head
LianaHus 4 years ago committed by Liana Husikyan
parent adbe4d2d29
commit 6b8926da38
  1. 3
      apps/remix-ide-e2e/src/commands/validateValueInput.ts
  2. 1
      apps/remix-ide-e2e/src/tests/runAndDeploy.ts

@ -12,8 +12,9 @@ class ValidateValueInput extends EventEmitter {
return elem.value
}, [selector], function (result) {
browser.assert.equal(result.value, expectedValue)
done()
})
done()
this.emit('complete')
})
return this
}

@ -28,7 +28,6 @@ module.exports = {
browser.waitForElementPresent('*[data-id="remixIdeSidePanel"]')
.assert.containsText('*[data-id="sidePanelSwapitTitle"]', 'DEPLOY & RUN TRANSACTIONS')
.validateValueInput('#value', '0000', '0')
.validateValueInput('#value', '-44', '0')
.validateValueInput('#value', '', '0')
.validateValueInput('#value', 'dragon', '0')
},

Loading…
Cancel
Save