mirror of https://github.com/embarklabs/embark.git
43 lines
934 B
JavaScript
43 lines
934 B
JavaScript
contract("SomeContract", function() {
|
|
this.timeout(0);
|
|
before(function(done) {
|
|
this.timeout(0);
|
|
var contractsConfig = {
|
|
"SimpleStorage": {
|
|
args: [100]
|
|
},
|
|
"Token": {
|
|
deploy: false,
|
|
args: [1000]
|
|
},
|
|
"MyToken2": {
|
|
instanceOf: "Token",
|
|
args: [2000]
|
|
},
|
|
"SomeContract": {
|
|
"args": [
|
|
["$MyToken2", "$SimpleStorage"],
|
|
100
|
|
]
|
|
}
|
|
};
|
|
EmbarkSpec.deployAll(contractsConfig, () => { done() });
|
|
});
|
|
|
|
it("set MyToken2 address", function(done) {
|
|
SomeContract.methods.addr_1().call().then(function(address) {
|
|
assert.equal(address, MyToken2.options.address);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it("set SimpleStorage address", function(done) {
|
|
SomeContract.methods.addr_2().call().then(function(address) {
|
|
assert.equal(address, SimpleStorage.options.address);
|
|
done();
|
|
});
|
|
});
|
|
|
|
});
|
|
|