From 896bfac66db42d871d86b46677af69307bb83bce Mon Sep 17 00:00:00 2001 From: yann300 Date: Wed, 23 Mar 2022 12:23:00 +0100 Subject: [PATCH] fix test --- apps/remix-ide-e2e/src/tests/providers.test.ts | 1 + libs/remix-ui/run-tab/src/lib/actions/index.ts | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) 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)) }