Skip to content

Commit

Permalink
remove uneeded commands
Browse files Browse the repository at this point in the history
  • Loading branch information
yann300 committed May 11, 2020
1 parent 4d12181 commit c585030
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 34 deletions.
15 changes: 0 additions & 15 deletions test-browser/commands/elementIsNotPresent.js

This file was deleted.

15 changes: 0 additions & 15 deletions test-browser/commands/elementIsPresent.js

This file was deleted.

8 changes: 4 additions & 4 deletions test-browser/tests/editor.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ module.exports = {
.executeScript('remix.exeCurrent()')
.switchFile('browser/3_Ballot.sol')
.editorScroll('down', 60)
.elementIsNotPresent('.highlightLine32')
.waitForElementNotPresent('.highlightLine32')
.checkElementStyle('.highlightLine40', 'background-color', 'rgb(8, 108, 181)')
.checkElementStyle('.highlightLine50', 'background-color', 'rgb(8, 108, 181)')
},
Expand All @@ -102,9 +102,9 @@ module.exports = {
.executeScript('remix.exeCurrent()')
.switchFile('browser/3_Ballot.sol')
.editorScroll('down', 60)
.elementIsNotPresent('.highlightLine32')
.elementIsNotPresent('.highlightLine40')
.elementIsNotPresent('.highlightLine50')
.waitForElementNotPresent('.highlightLine32')
.waitForElementNotPresent('.highlightLine40')
.waitForElementNotPresent('.highlightLine50')
.end()
},

Expand Down

0 comments on commit c585030

Please sign in to comment.