embark-area-51/test_apps/contracts_app/test/lib_test_spec.js

25 lines
464 B
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 = {
"Test2": {
},
"ZAMyLib": {
},
2017-12-27 13:37:39 +00:00
"ZAMyLib2": {
"deploy": true
}
};
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();
});
});
});