Added done callback

pull/11/head
ioedeveloper 4 years ago
parent 4e1d5608a3
commit 894aa795ed
  1. 3
      apps/remix-ide/test-browser/commands/clickLaunchIcon.js

@ -2,8 +2,9 @@ const EventEmitter = require('events')
class ClickLaunchIcon extends EventEmitter {
command (icon) {
this.api.waitForElementVisible('#icon-panel div[plugin="' + icon + '"]').click('#icon-panel div[plugin="' + icon + '"]').perform(() => {
this.api.waitForElementVisible('#icon-panel div[plugin="' + icon + '"]').click('#icon-panel div[plugin="' + icon + '"]').perform((done) => {
this.emit('complete')
done()
})
return this
}

Loading…
Cancel
Save