diff --git a/apps/remix-ide-e2e/src/local-plugin/src/app/app.tsx b/apps/remix-ide-e2e/src/local-plugin/src/app/app.tsx index c0b31f55b3..c9cb1d113a 100644 --- a/apps/remix-ide-e2e/src/local-plugin/src/app/app.tsx +++ b/apps/remix-ide-e2e/src/local-plugin/src/app/app.tsx @@ -13,7 +13,6 @@ import { terminalProfile } from '@remixproject/plugin-api/lib/terminal/profile' import { udappProfile } from '@remixproject/plugin-api/lib/udapp' import { compilerProfile } from '@remixproject/plugin-api/lib/compiler' import { contentImportProfile } from '@remixproject/plugin-api/lib/content-import' -import { unitTestProfile } from '@remixproject/plugin-api/lib/unit-testing' import { windowProfile } from '@remixproject/plugin-api/lib/window' import { pluginManagerProfile } from '@remixproject/plugin-api/lib/plugin-manager' import { Profile } from '@remixproject/plugin-utils' @@ -27,7 +26,7 @@ function App () { const [append, setAppend] = useState(false) const [log, setLog] = useState() const [events, setEvents] = useState() - const [profiles, setProfiles] = useState([pluginManagerProfile, filePanelProfile, filSystemProfile, dGitProfile, networkProfile, settingsProfile, editorProfile, terminalProfile, compilerProfile, udappProfile, contentImportProfile, unitTestProfile, windowProfile]) + const [profiles, setProfiles] = useState([pluginManagerProfile, filePanelProfile, filSystemProfile, dGitProfile, networkProfile, settingsProfile, editorProfile, terminalProfile, compilerProfile, udappProfile, contentImportProfile, windowProfile]) const handleChange = ({ target }: any) => { setPayload(target.value) @@ -35,7 +34,7 @@ function App () { useEffect(() => { client.onload(async () => { - const customProfiles = ['menuicons', 'tabs'] + const customProfiles = ['menuicons', 'tabs', 'solidityUnitTesting'] let addProfiles = [] for (const name of customProfiles) { diff --git a/apps/remix-ide/src/remixEngine.js b/apps/remix-ide/src/remixEngine.js index e7c358e576..fd40429fa1 100644 --- a/apps/remix-ide/src/remixEngine.js +++ b/apps/remix-ide/src/remixEngine.js @@ -13,6 +13,7 @@ export class RemixEngine extends Engine { if (name === 'dGitProvider') return { queueTimeout: 60000 * 4 } if (name === 'slither') return { queueTimeout: 60000 * 4 } // Requires when a solc version is installed if (name === 'hardhat') return { queueTimeout: 60000 * 4 } + if (name === 'solidityUnitTesting') return { queueTimeout: 60000 * 4 } return { queueTimeout: 10000 } }