pull/5370/head
Aniket-Engg 3 years ago committed by Aniket
parent 4a4bdb17cf
commit 651af04a0a
  1. 13
      libs/remix-ui/solidity-unit-testing/src/lib/solidity-unit-testing.tsx

@ -192,15 +192,12 @@ export const SolidityUnitTesting = (props: any) => {
} }
const stopTests = () => { const stopTests = () => {
console.log('stopTests') console.log('stopTests')
// this.hasBeenStopped = true setHasBeenStopped(true)
// const stopBtnLabel = document.getElementById('runTestsTabStopActionLabel') setStopButtonLabel('Stopping')
// stopBtnLabel.innerText = 'Stopping' const stopBtn = document.getElementById('runTestsTabStopAction')
// const stopBtn = document.getElementById('runTestsTabStopAction') setDisableStopButton(true)
// stopBtn.setAttribute('disabled', 'disabled') setDisableRunButton(true)
// const runBtn = document.getElementById('runTestsTabRunAction')
// runBtn.setAttribute('disabled', 'disabled')
} }
const toggleCheckbox = (eChecked: any, test:any) => { const toggleCheckbox = (eChecked: any, test:any) => {

Loading…
Cancel
Save