stop after error

pull/5370/head
LianaHus 5 years ago committed by Aniket
parent 6d2e298a6f
commit 094707402e
  1. 6
      src/app/tabs/test-tab.js

@ -177,8 +177,8 @@ module.exports = class TestTab extends ViewPlugin {
// if all tests has been through before stopping no need to print this. // if all tests has been through before stopping no need to print this.
this.testsExecutionStopped.hidden = false this.testsExecutionStopped.hidden = false
} }
if (this.hasBeenStopped || this.readyTestsNumber === this.runningTestsNumber) { if (_errors || this.hasBeenStopped || this.readyTestsNumber === this.runningTestsNumber) {
// All tests are ready or the operation has been canceled // All tests are ready or the operation has been canceled or there was a compilation error in one of the test files.
const stopBtn = document.getElementById('runTestsTabStopAction') const stopBtn = document.getElementById('runTestsTabStopAction')
stopBtn.setAttribute('disabled', 'disabled') stopBtn.setAttribute('disabled', 'disabled')
const stopBtnLabel = document.getElementById('runTestsTabStopActionLabel') const stopBtnLabel = document.getElementById('runTestsTabStopActionLabel')
@ -197,7 +197,7 @@ module.exports = class TestTab extends ViewPlugin {
} }
/* /*
Test are not associated with the UI Test is not associated with the UI
*/ */
testFromSource (content, path = 'browser/unit_test.sol') { testFromSource (content, path = 'browser/unit_test.sol') {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {

Loading…
Cancel
Save