Skip to content

Commit e3ebc65

Browse files
committed
fix e2e tests
1 parent dd4e761 commit e3ebc65

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

apps/remix-ide-e2e/src/tests/remixd.test.ts

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,18 @@ module.exports = {
6969
.clickLaunchIcon('solidity')
7070
.setSolidityCompilerVersion('soljson-v0.6.2+commit.bacdbe57.js') // open-zeppelin moved to pragma ^0.6.0
7171
.testContracts('test_import_node_modules_with_github_import.sol', sources[4]['browser/test_import_node_modules_with_github_import.sol'], ['ERC20', 'test11'])
72-
.clickLaunchIcon('pluginManager')
73-
.scrollAndClick('#pluginManager article[id="remixPluginManagerListItem_remixd"] button')
74-
},
72+
},
7573

7674
'Run git status': function (browser) {
77-
browser.executeScript('git status')
78-
.journalLastChildIncludes('On branch master')
75+
browser
76+
.executeScript('git status')
77+
.journalLastChildIncludes('On branch ')
78+
},
79+
80+
'Close Remixd': function (browser) {
81+
browser
82+
.clickLaunchIcon('pluginManager')
83+
.scrollAndClick('#pluginManager article[id="remixPluginManagerListItem_remixd"] button')
7984
.end()
8085
},
8186
tearDown: sauce

0 commit comments

Comments
 (0)