failing test

pull/5597/head
aniket-engg 1 month ago committed by Aniket
parent 40bb52961a
commit 2a13be3868
  1. 7
      apps/remix-ide-e2e/src/tests/vm_state.test.ts

@ -19,6 +19,13 @@ const tests = {
.assert.elementPresent('*[data-id="fork-state-icon"]')
.assert.elementPresent('*[data-id="delete-state-icon"]')
},
'Should show toaster while trying fork and delete VM state without state #group1': function (browser: NightwatchBrowser) {
browser
.assert.elementPresent('*[data-id="fork-state-icon"]')
.click('*[data-id="fork-state-icon"]')
.waitForElementVisible('*[data-shared="tooltipPopup"]', 10000)
.assert.containsText('*[data-shared="tooltipPopup"]', `State not available to fork, as no transactions have been made for selected environment & selected workspace.`)
},
}
module.exports = {

Loading…
Cancel
Save