embark/demo/test/simple_storage_spec.js

30 lines
695 B
JavaScript
Raw Normal View History

2016-05-30 00:14:27 +00:00
describe("SimpleStorage", function() {
2018-01-12 23:11:24 +00:00
this.timeout(0);
2015-10-12 14:50:52 +00:00
before(function(done) {
this.timeout(0);
2016-10-02 20:57:13 +00:00
var contractsConfig = {
"SimpleStorage": {
2016-10-16 18:52:04 +00:00
args: [100]
2016-10-02 20:57:13 +00:00
}
};
2018-01-12 23:11:24 +00:00
EmbarkSpec.deployAll(contractsConfig, () => { done() });
2015-10-12 14:50:52 +00:00
});
it("should set constructor value", function(done) {
2018-01-12 23:11:24 +00:00
SimpleStorage.methods.storedData().call().then(function(result) {
assert.equal(result, 100);
2015-10-12 14:50:52 +00:00
done();
});
});
it("set storage value", function(done) {
2018-01-12 23:11:24 +00:00
SimpleStorage.methods.set(150).send().then(function() {
SimpleStorage.methods.get().call().then(function(result) {
assert.equal(result, 150);
2015-10-12 14:50:52 +00:00
done();
2016-10-02 20:57:13 +00:00
});
2015-10-12 14:50:52 +00:00
});
});
});