Merge pull request #2366 from ethereum/add_browser_tests_for_unittests
add browser tests for testing basic use of solidity tests tabpull/1/head
commit
fd6ddd6c1f
@ -0,0 +1,34 @@ |
|||||||
|
'use strict' |
||||||
|
var init = require('../helpers/init') |
||||||
|
var sauce = require('./sauce') |
||||||
|
|
||||||
|
var sources = [] |
||||||
|
|
||||||
|
module.exports = { |
||||||
|
before: function (browser, done) { |
||||||
|
init(browser, done) |
||||||
|
}, |
||||||
|
'@sources': function () { |
||||||
|
return sources |
||||||
|
}, |
||||||
|
'Solidity Unittests': function (browser) { |
||||||
|
runTests(browser) |
||||||
|
}, |
||||||
|
tearDown: sauce |
||||||
|
} |
||||||
|
|
||||||
|
function runTests (browser) { |
||||||
|
browser |
||||||
|
.waitForElementVisible('#icon-panel', 10000) |
||||||
|
.click('#icon-panel div[plugin="pluginManager"]') |
||||||
|
.scrollAndClick('#pluginManager article[id="remixPluginManagerListItem_solidityUnitTesting"] button') |
||||||
|
.clickLaunchIcon('fileExplorers') |
||||||
|
.switchFile('browser/ballot.sol') |
||||||
|
.clickLaunchIcon('solidityUnitTesting') |
||||||
|
.scrollAndClick('#runTestsTabRunAction') |
||||||
|
.waitForElementPresent('#solidityUnittestsOutput div[class^="testPass"]') |
||||||
|
.assert.containsText('#solidityUnittestsOutput', 'browser/ballot_test.sol (test3)') |
||||||
|
.assert.containsText('#solidityUnittestsOutput', '✓ (Check winning proposal)') |
||||||
|
.assert.containsText('#solidityUnittestsOutput', '✓ (Check winnin proposal with return value)') |
||||||
|
.end() |
||||||
|
} |
Loading…
Reference in new issue