From 882df14063d15325e67721bd9d4edad2c6a027cc Mon Sep 17 00:00:00 2001 From: bunsenstraat Date: Tue, 29 Oct 2024 16:15:42 +0100 Subject: [PATCH] rm flaky --- apps/remix-ide-e2e/src/tests/providers.test.ts | 4 ++-- apps/remix-ide-e2e/src/tests/runAndDeploy_injected.test.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/remix-ide-e2e/src/tests/providers.test.ts b/apps/remix-ide-e2e/src/tests/providers.test.ts index 4caa102578..862fed757b 100644 --- a/apps/remix-ide-e2e/src/tests/providers.test.ts +++ b/apps/remix-ide-e2e/src/tests/providers.test.ts @@ -8,7 +8,7 @@ module.exports = { init(browser, done, 'http://127.0.0.1:8080', false) }, - 'Should switch to ganache provider, set a custom URL and fail to connect #flaky #group1': function (browser: NightwatchBrowser) { + 'Should switch to ganache provider, set a custom URL and fail to connect #group1': function (browser: NightwatchBrowser) { browser.waitForElementVisible('div[data-id="remixIdeIconPanel"]', 10000) .clickLaunchIcon('udapp') .switchEnvironment('ganache-provider') @@ -60,7 +60,7 @@ module.exports = { .waitForElementContainsText('*[data-id="settingsNetworkEnv"]', 'Custom (') }, - 'Should switch to custom provider #flaky #group2': function (browser: NightwatchBrowser) { + 'Should switch to custom provider #group2': function (browser: NightwatchBrowser) { browser.waitForElementVisible('div[data-id="remixIdeIconPanel"]', 10000) .clickLaunchIcon('udapp') .switchEnvironment('ganache-provider') diff --git a/apps/remix-ide-e2e/src/tests/runAndDeploy_injected.test.ts b/apps/remix-ide-e2e/src/tests/runAndDeploy_injected.test.ts index 11e8706517..9ce2d8eca9 100644 --- a/apps/remix-ide-e2e/src/tests/runAndDeploy_injected.test.ts +++ b/apps/remix-ide-e2e/src/tests/runAndDeploy_injected.test.ts @@ -62,7 +62,7 @@ const tests = { .switchBrowserTab(0) // back to remix }, - 'Should add a contract file #group1 #flaky': function (browser: NightwatchBrowser) { + 'Should add a contract file #group1': function (browser: NightwatchBrowser) { if (!checkBrowserIsChrome(browser)) return browser.waitForElementVisible('*[data-id="remixIdeSidePanel"]') .clickLaunchIcon('filePanel') @@ -333,7 +333,7 @@ if (!checkBrowserIsChrome(browser)) { module.exports = {} } else { module.exports = { - ...tests //(branch ? (isMasterBranch ? tests : {}) : tests), + ... (branch ? (isMasterBranch ? tests : {}) : tests), }; }