Commit 372e29e1 authored by ioedeveloper's avatar ioedeveloper

Fixed debugger test

parent ceeeb76e
......@@ -89,11 +89,10 @@ module.exports = {
.debugTransaction(2)
.pause(2000)
.goToVMTraceStep(10)
.pause(10000)
.getEditorValue((content) => {
browser.assert.ok(content.indexOf(`constructor (string memory name, string memory symbol) public {
_name = name;
_symbol = symbol;
browser.assert.ok(content.indexOf(`constructor (string memory name_, string memory symbol_) public {
_name = name_;
_symbol = symbol_;
_decimals = 18;
}`) != -1,
'current displayed content is not from the ERC20 source code')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment