Fixed failing tests

pull/343/head
ioedeveloper 4 years ago
parent 7966774948
commit 374e03c404
  1. 2
      apps/remix-ide-e2e/src/commands/getEditorValue.ts

@ -10,7 +10,7 @@ class GetEditorValue extends EventEmitter {
elem.editor.getValue()
}, [], (result) => {
done()
callback(typeof result.value === 'string' ? result.value : '')
typeof result.value === 'string' && callback(result.value)
this.emit('complete')
})
})

Loading…
Cancel
Save