turn off flaky

pull/5343/head
bunsenstraat 3 weeks ago committed by Aniket
parent 47eb868012
commit 890dd09cc0
  1. 4
      .circleci/config.yml
  2. 11
      apps/remix-ide-e2e/src/tests/metamask.test.ts

@ -3,7 +3,7 @@ version: 2.1
parameters: parameters:
run_flaky_tests: run_flaky_tests:
type: boolean type: boolean
default: true default: false
orbs: orbs:
browser-tools: circleci/browser-tools@1.4.4 browser-tools: circleci/browser-tools@1.4.4
win: circleci/windows@5.0 win: circleci/windows@5.0
@ -640,7 +640,7 @@ jobs:
type: string type: string
jobsize: jobsize:
type: string type: string
parallelism: 1 parallelism: 10
steps: steps:
- checkout - checkout
- attach_workspace: - attach_workspace:

@ -35,7 +35,7 @@ const tests = {
return sources return sources
}, },
'Should connect to Sepolia Test Network using MetaMask #flaky #group1': function (browser: NightwatchBrowser) { 'Should connect to Sepolia Test Network using MetaMask #group1': function (browser: NightwatchBrowser) {
if (!checkBrowserIsChrome(browser)) return if (!checkBrowserIsChrome(browser)) return
browser.waitForElementPresent('*[data-id="remixIdeSidePanel"]') browser.waitForElementPresent('*[data-id="remixIdeSidePanel"]')
.setupMetamask(passphrase, password) .setupMetamask(passphrase, password)
@ -148,16 +148,11 @@ if (!checkBrowserIsChrome(browser)) {
module.exports = {} module.exports = {}
} else { } else {
module.exports = { module.exports = {
...tests// (branch ? (isMasterBranch ? tests : {}) : tests), ...(branch ? (isMasterBranch ? tests : {}) : tests),
}; };
} }
const localsCheck = {
to: {
value: '0x4B0897B0513FDC7C541B6D9D7E929C4E5364D2DB',
type: 'address'
}
}
const sources = [ const sources = [
{ {

Loading…
Cancel
Save