embark-area-51/test_app/test/lib_test_spec.js

54 lines
1.0 KiB
JavaScript
Raw Normal View History

2018-01-05 20:10:47 +00:00
contract("Test", function() {
2017-12-27 13:37:39 +00:00
before(function(done) {
this.timeout(0);
var contractsConfig = {
"Test": {
"gas": 2000000
},
"ZAMyLib2": {
"deploy": true
2018-01-05 20:10:47 +00:00
},
"SimpleStorage": {
args: [100]
},
"AnotherStorage": {
args: ["$SimpleStorage"]
},
"Token": {
deploy: false,
args: [1000]
},
"MyToken": {
instanceOf: "Token"
},
"MyToken2": {
instanceOf: "Token",
args: [2000]
},
2018-03-10 17:52:37 +00:00
"ContractArgs": {
"args": {
"initialValue": 123,
"_addresses": ["$MyToken2", "$SimpleStorage"]
}
},
"SomeContract": {
"args": [
["$MyToken2", "$SimpleStorage"],
100
]
2017-12-27 13:37:39 +00:00
}
};
2018-01-05 20:10:47 +00:00
2017-12-27 13:37:39 +00:00
EmbarkSpec.deployAll(contractsConfig, () => { done() });
});
it("should call library correctly", function(done) {
2018-01-05 20:10:47 +00:00
Test2.methods.testAdd().call().then(function(result) {
assert.equal(result, 3);
2017-12-27 13:37:39 +00:00
done();
});
});
});