Update test-tab.js

pull/1634/head
Liana Husikyan 3 years ago committed by lianahus
parent 39fd256539
commit c04b227583
  1. 4
      apps/remix-ide/src/app/tabs/test-tab.js

@ -625,7 +625,7 @@ module.exports = class TestTab extends ViewPlugin {
return this.generateFileActionElement
}
async updateRunAction (currentFile) {
updateRunAction (currentFile) {
const el = yo`
<button id="runTestsTabRunAction" title="Run tests" data-id="testTabRunTestsTabRunAction" class="w-50 btn btn-primary" onclick="${() => this.runTests()}">
<span class="fas fa-play ml-2"></span>
@ -639,7 +639,7 @@ module.exports = class TestTab extends ViewPlugin {
el.setAttribute('title', 'No solidity file selected')
} else {
el.setAttribute('title', 'The "Solidity Plugin" should be activated')
await this.call('manager', 'activatePlugin', 'solidity')
this.call('manager', 'activatePlugin', 'solidity')
}
}
if (!this.runActionElement) {

Loading…
Cancel
Save