diff --git a/apps/remix-ide-e2e/src/tests/providers.test.ts b/apps/remix-ide-e2e/src/tests/providers.test.ts index b929c19d02..de03803e38 100644 --- a/apps/remix-ide-e2e/src/tests/providers.test.ts +++ b/apps/remix-ide-e2e/src/tests/providers.test.ts @@ -21,6 +21,7 @@ module.exports = { .waitForElementContainsText('*[data-id="ganache-providerModalDialogModalBody-react"]', 'Error while connecting to the provider') .modalFooterOKClick('ganache-provider') .waitForElementNotVisible('*[data-id="ganache-providerModalDialogModalBody-react"]') + .pause(1000) }, 'Should switch to ganache provider, use the default ganache URL and succeed to connect': function (browser: NightwatchBrowser) { diff --git a/libs/remix-ui/run-tab/src/lib/actions/index.ts b/libs/remix-ui/run-tab/src/lib/actions/index.ts index fa4a0a54ac..030f0669fa 100644 --- a/libs/remix-ui/run-tab/src/lib/actions/index.ts +++ b/libs/remix-ui/run-tab/src/lib/actions/index.ts @@ -206,7 +206,6 @@ export const setNetworkNameFromProvider = (networkName: string) => { } const addExternalProvider = (network) => { - console.log('adding ext provider', network) dispatch(addProvider(network)) }