pull/2868/head
filip mertens 2 years ago
parent b579eee9b2
commit 3af5418163
  1. 2
      .circleci/config.yml
  2. 5
      apps/remix-ide-e2e/src/tests/debugger.test.ts

@ -3,7 +3,7 @@ version: 2.1
parameters:
run_flaky_tests:
type: boolean
default: false
default: true
orbs:
browser-tools: circleci/browser-tools@1.4.0
jobs:

@ -12,12 +12,13 @@ module.exports = {
return sources
},
'Should launch debugger #group1': function (browser: NightwatchBrowser) {
'Should launch debugger #group1 #flaky': function (browser: NightwatchBrowser) {
browser.addFile('blah.sol', sources[0]['blah.sol'])
.pause(4000)
.clickLaunchIcon('solidity').click('*[data-id="compilerContainerCompileBtn"]')
.pause(4000)
.clickLaunchIcon('udapp')
.waitForElementPresent('*[title="Deploy - transact (not payable)"]', 65000)
.waitForElementPresent('*[title="Deploy - transact (not payable)"]', 180000)
.click('*[title="Deploy - transact (not payable)"]')
.debugTransaction(0)
.waitForElementContainsText('*[data-id="sidePanelSwapitTitle"]', 'DEBUGGER', 60000)

Loading…
Cancel
Save