update tests

This commit is contained in:
Iuri Matias 2018-03-10 12:52:37 -05:00
parent b7b5f1b365
commit c456c405c4
6 changed files with 30 additions and 1 deletions

View File

@ -83,7 +83,6 @@ class Embark {
});
engine.logger.info('dashboard start');
callback();
});
},

View File

@ -20,6 +20,12 @@ contract("AnotherStorage", function() {
instanceOf: "Token",
args: [2000]
},
"ContractArgs": {
"args": {
"initialValue": 123,
"_addresses": ["$MyToken2", "$SimpleStorage"]
}
},
"SomeContract": {
"args": [
["$MyToken2", "$SimpleStorage"],

View File

@ -20,6 +20,12 @@ contract("SomeContract", function() {
instanceOf: "Token",
args: [2000]
},
"ContractArgs": {
"args": {
"initialValue": 123,
"_addresses": ["$MyToken2", "$SimpleStorage"]
}
},
"SomeContract": {
"args": [
["$MyToken2", "$SimpleStorage"],

View File

@ -25,6 +25,12 @@ contract("Test", function() {
instanceOf: "Token",
args: [2000]
},
"ContractArgs": {
"args": {
"initialValue": 123,
"_addresses": ["$MyToken2", "$SimpleStorage"]
}
},
"SomeContract": {
"args": [
["$MyToken2", "$SimpleStorage"],

View File

@ -27,6 +27,12 @@ contract("SimpleStorage", function() {
instanceOf: "Token",
args: [2000]
},
"ContractArgs": {
"args": {
"initialValue": 123,
"_addresses": ["$MyToken2", "$SimpleStorage"]
}
},
"SomeContract": {
"args": [
["$MyToken2", "$SimpleStorage"],

View File

@ -36,6 +36,12 @@ describe("Token", function() {
"Test.methods.changeAddress('$MyToken').send()"
]
},
"ContractArgs": {
"args": {
"initialValue": 123,
"_addresses": ["$MyToken2", "$SimpleStorage"]
}
},
"SomeContract": {
"args": [
["$MyToken2", "$SimpleStorage"],