pull/1862/head
aniket-engg 3 years ago committed by Aniket
parent 375650cbbb
commit 96d6ec4e65
  1. 11
      libs/remix-ui/solidity-unit-testing/src/lib/solidity-unit-testing.tsx

@ -1,11 +1,12 @@
import React, { useState, useRef, useEffect } from 'react' // eslint-disable-line import React, { useState, useRef, useEffect } from 'react' // eslint-disable-line
var async = require('async') import { eachOfSeries } from 'async'
import { canUseWorker, urlFromVersion } from '@remix-project/remix-solidity' import { canUseWorker, urlFromVersion } from '@remix-project/remix-solidity'
import { Renderer } from '@remix-ui/renderer' // eslint-disable-line import { Renderer } from '@remix-ui/renderer' // eslint-disable-line
import { format } from 'util' import { format } from 'util'
import './css/style.css' import './css/style.css'
const _paq = (window as any)._paq = (window as any)._paq || []
/* eslint-disable-next-line */ /* eslint-disable-next-line */
export interface SolidityUnitTestingProps {} export interface SolidityUnitTestingProps {}
@ -202,7 +203,7 @@ export const SolidityUnitTesting = (props: any) => {
} }
finalLogs = finalLogs + ' ' + formattedLog + '\n' finalLogs = finalLogs + ' ' + formattedLog + '\n'
} }
// _paq.push(['trackEvent', 'solidityUnitTesting', 'hardhat', 'console.log']) _paq.push(['trackEvent', 'solidityUnitTesting', 'hardhat', 'console.log'])
testTab.call('terminal', 'log', { type: 'info', value: finalLogs }) testTab.call('terminal', 'log', { type: 'info', value: finalLogs })
} }
@ -516,8 +517,8 @@ export const SolidityUnitTesting = (props: any) => {
const tests = selectedTests const tests = selectedTests
if (!tests || !tests.length) return if (!tests || !tests.length) return
else setProgressBarHidden(false) else setProgressBarHidden(false)
// _paq.push(['trackEvent', 'solidityUnitTesting', 'runTests']) _paq.push(['trackEvent', 'solidityUnitTesting', 'runTests'])
async.eachOfSeries(tests, (value: any, key: any, callback: any) => { eachOfSeries(tests, (value: any, key: any, callback: any) => {
if (hasBeenStopped.current) return if (hasBeenStopped.current) return
runTest(value, callback) runTest(value, callback)
}) })

Loading…
Cancel
Save