more e2e tests fixed

latestSolVersion
aniket-engg 4 years ago
parent 7058986e56
commit 8e2c7cb281
  1. 6
      apps/remix-ide-e2e/src/tests/debugger.test.ts
  2. 6
      apps/remix-ide-e2e/src/tests/solidityUnittests.test.ts
  3. 5
      apps/remix-ide-e2e/src/tests/staticAnalysis.test.ts

@ -16,7 +16,7 @@ module.exports = {
'Should launch debugger': function (browser: NightwatchBrowser) {
browser.addFile('blah.sol', sources[0]['browser/blah.sol'])
.clickLaunchIcon('udapp')
.waitForElementPresent('*[title="Deploy - transact (not payable)"]')
.waitForElementPresent('*[title="Deploy - transact (not payable)"]', 35000)
.click('*[title="Deploy - transact (not payable)"]')
.debugTransaction(0)
.assert.containsText('*[data-id="sidePanelSwapitTitle"]', 'DEBUGGER')
@ -178,7 +178,7 @@ const sources = [
{
'browser/blah.sol': {
content: `
pragma solidity >=0.4.22 <0.7.0;
pragma solidity >=0.7.0 <0.8.0;
contract Kickstarter {
@ -193,7 +193,7 @@ const sources = [
Project[] public projects;
constructor() public {
constructor() {
}

@ -346,7 +346,7 @@ const sources = [
},
'browser/compilationError_test.sol': {
content: `
pragma solidity ^0.6.1;
pragma solidity ^0.7.0;
contract failOnCompilation {
fallback() {
@ -357,7 +357,7 @@ const sources = [
},
'browser/tests/deployError_test.sol': {
content: `
pragma solidity ^0.8.0;
pragma solidity ^0.7.0;
contract failingDeploy {
constructor() {
@ -368,7 +368,7 @@ const sources = [
},
'browser/tests/methodFailure_test.sol': {
content: `
pragma solidity ^0.8.0;
pragma solidity ^0.7.0;
contract methodfailure {
function add(uint a, uint b) public {

@ -6,12 +6,12 @@ import sauce from './sauce'
const sources = [
{
'browser/Untitled.sol': {content: `
pragma solidity >=0.4.22 <0.7.0;
pragma solidity >=0.6.0 <0.8.0;
contract test1 { address test = tx.origin; }
contract test2 {}
contract TooMuchGas {
uint x;
function() external {
fallback() external {
x++;
uint test;
uint test1;
@ -36,6 +36,7 @@ function runTests (browser: NightwatchBrowser) {
browser
.waitForElementVisible('#icon-panel', 10000)
.clickLaunchIcon('solidity')
.pause(10000)
.testContracts('Untitled.sol', sources[0]['browser/Untitled.sol'], ['TooMuchGas', 'test1', 'test2'])
.clickLaunchIcon('solidityStaticAnalysis')
.click('#staticanalysisView button')

Loading…
Cancel
Save