Fix toggle swap panel

pull/1/head
yann300 6 years ago
parent 612542032c
commit 602623bff2
  1. 1
      src/app/components/panel.js
  2. 2
      test-browser/tests/generalTests.js

@ -58,6 +58,7 @@ export class AbstractPanel {
if (!this.contents[name]) return
if (this.active === name) {
this.events.emit('toggle', name)
return
}
this.showContent(name)
this.events.emit('showing', name)

@ -164,7 +164,7 @@ function checkDeployShouldSucceed (browser, address, callback) {
function testSignature (browser, callback) {
let hash, signature
browser.clickLaunchIcon('run').pause(4000).perform((client, done) => {
browser.perform((client, done) => {
contractHelper.signMsg(browser, 'test message', (h, s) => {
hash = h
signature = s

Loading…
Cancel
Save