mirror of https://github.com/embarklabs/embark.git
update tests
This commit is contained in:
parent
b7b5f1b365
commit
c456c405c4
|
@ -83,7 +83,6 @@ class Embark {
|
|||
});
|
||||
|
||||
engine.logger.info('dashboard start');
|
||||
|
||||
callback();
|
||||
});
|
||||
},
|
||||
|
|
|
@ -20,6 +20,12 @@ contract("AnotherStorage", function() {
|
|||
instanceOf: "Token",
|
||||
args: [2000]
|
||||
},
|
||||
"ContractArgs": {
|
||||
"args": {
|
||||
"initialValue": 123,
|
||||
"_addresses": ["$MyToken2", "$SimpleStorage"]
|
||||
}
|
||||
},
|
||||
"SomeContract": {
|
||||
"args": [
|
||||
["$MyToken2", "$SimpleStorage"],
|
||||
|
|
|
@ -20,6 +20,12 @@ contract("SomeContract", function() {
|
|||
instanceOf: "Token",
|
||||
args: [2000]
|
||||
},
|
||||
"ContractArgs": {
|
||||
"args": {
|
||||
"initialValue": 123,
|
||||
"_addresses": ["$MyToken2", "$SimpleStorage"]
|
||||
}
|
||||
},
|
||||
"SomeContract": {
|
||||
"args": [
|
||||
["$MyToken2", "$SimpleStorage"],
|
||||
|
|
|
@ -25,6 +25,12 @@ contract("Test", function() {
|
|||
instanceOf: "Token",
|
||||
args: [2000]
|
||||
},
|
||||
"ContractArgs": {
|
||||
"args": {
|
||||
"initialValue": 123,
|
||||
"_addresses": ["$MyToken2", "$SimpleStorage"]
|
||||
}
|
||||
},
|
||||
"SomeContract": {
|
||||
"args": [
|
||||
["$MyToken2", "$SimpleStorage"],
|
||||
|
|
|
@ -27,6 +27,12 @@ contract("SimpleStorage", function() {
|
|||
instanceOf: "Token",
|
||||
args: [2000]
|
||||
},
|
||||
"ContractArgs": {
|
||||
"args": {
|
||||
"initialValue": 123,
|
||||
"_addresses": ["$MyToken2", "$SimpleStorage"]
|
||||
}
|
||||
},
|
||||
"SomeContract": {
|
||||
"args": [
|
||||
["$MyToken2", "$SimpleStorage"],
|
||||
|
|
|
@ -36,6 +36,12 @@ describe("Token", function() {
|
|||
"Test.methods.changeAddress('$MyToken').send()"
|
||||
]
|
||||
},
|
||||
"ContractArgs": {
|
||||
"args": {
|
||||
"initialValue": 123,
|
||||
"_addresses": ["$MyToken2", "$SimpleStorage"]
|
||||
}
|
||||
},
|
||||
"SomeContract": {
|
||||
"args": [
|
||||
["$MyToken2", "$SimpleStorage"],
|
||||
|
|
Loading…
Reference in New Issue