Merge pull request #522 from ethereum/fixe2e

Fix e2e tests
pull/521/head
yann300 4 years ago committed by GitHub
commit 1a63e612d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      apps/remix-ide-e2e/src/commands/clickFunction.ts
  2. 22
      apps/remix-ide-e2e/src/tests/debugger.test.ts

@ -14,7 +14,7 @@ class ClickFunction extends EventEmitter {
done()
})
})
.click('.instance button[title="' + fnFullName + '"]')
.scrollAndClick('.instance button[title="' + fnFullName + '"]')
.pause(2000)
.perform(() => {
this.emit('complete')

@ -131,10 +131,14 @@ module.exports = {
.goToVMTraceStep(717)
.pause(5000)
.checkVariableDebug('soliditylocals', localVariable_step717_ABIEncoder) // all locals should be initiaed
.clickLaunchIcon('udapp')
.clickInstance(2)
},
'Should load more solidity locals array': function (browser: NightwatchBrowser) {
browser.addFile('locals.sol', sources[3]['browser/locals.sol'])
browser
.clickLaunchIcon('solidity')
.testContracts('locals.sol', sources[3]['browser/locals.sol'], ['testLocals'])
.clickLaunchIcon('udapp')
.waitForElementPresent('*[title="Deploy - transact (not payable)"]', 40000)
.createContract('')
@ -241,15 +245,15 @@ const sources = [
{
'browser/locals.sol': {
content: `
pragma solidity ^0.7.0;
contract test {
function t () public {
uint[] memory array = new uint[](150);
for (uint k = 0; k < 150; k++) {
array[k] = k;
}
pragma solidity ^0.7.0;
contract testLocals {
function t () public {
uint[] memory array = new uint[](150);
for (uint k = 0; k < 150; k++) {
array[k] = k;
}
}
}
}
`
}
},

Loading…
Cancel
Save