fix e2e tests

pull/638/head
yann300 4 years ago
parent 80a9e765db
commit 658d4c30ec
  1. 16
      apps/remix-ide-e2e/src/tests/remixd.test.ts

@ -69,13 +69,19 @@ module.exports = {
.clickLaunchIcon('solidity')
.setSolidityCompilerVersion('soljson-v0.6.2+commit.bacdbe57.js') // open-zeppelin moved to pragma ^0.6.0
.testContracts('test_import_node_modules_with_github_import.sol', sources[4]['browser/test_import_node_modules_with_github_import.sol'], ['ERC20', 'test11'])
.clickLaunchIcon('pluginManager')
.scrollAndClick('#pluginManager article[id="remixPluginManagerListItem_remixd"] button')
},
},
'Run git status': function (browser) {
browser.executeScript('git status')
.journalLastChildIncludes('On branch master')
browser
.executeScript('git status')
.pause(3000)
.journalLastChildIncludes('On branch ')
},
'Close Remixd': function (browser) {
browser
.clickLaunchIcon('pluginManager')
.scrollAndClick('#pluginManager article[id="remixPluginManagerListItem_remixd"] button')
.end()
},
tearDown: sauce

Loading…
Cancel
Save