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:
run_flaky_tests:
type: boolean
default: true
default: false
orbs:
browser-tools: circleci/browser-tools@1.4.4
win: circleci/windows@5.0
@ -640,7 +640,7 @@ jobs:
type: string
jobsize:
type: string
parallelism: 1
parallelism: 10
steps:
- checkout
- attach_workspace:

@ -35,7 +35,7 @@ const tests = {
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
browser.waitForElementPresent('*[data-id="remixIdeSidePanel"]')
.setupMetamask(passphrase, password)
@ -148,16 +148,11 @@ if (!checkBrowserIsChrome(browser)) {
module.exports = {}
} else {
module.exports = {
...tests// (branch ? (isMasterBranch ? tests : {}) : tests),
...(branch ? (isMasterBranch ? tests : {}) : tests),
};
}
const localsCheck = {
to: {
value: '0x4B0897B0513FDC7C541B6D9D7E929C4E5364D2DB',
type: 'address'
}
}
const sources = [
{

Loading…
Cancel
Save