embark/test_app/test/another_storage_spec.js

40 lines
951 B
JavaScript
Raw Normal View History

2017-02-10 00:38:02 +00:00
var assert = require('assert');
2017-03-12 03:23:30 +00:00
var Embark = require('embark');
//TODO: this path is temporary to handle the scope of Embark within an app
var EmbarkSpec = require('../node_modules/embark/lib/core/test.js');
2017-02-10 00:38:02 +00:00
var web3 = EmbarkSpec.web3;
describe("AnotherStorage", function() {
before(function(done) {
this.timeout(0);
2017-02-10 00:38:02 +00:00
var contractsConfig = {
"SimpleStorage": {
args: [100]
},
"AnotherStorage": {
args: ["$SimpleStorage"]
2017-02-10 02:05:45 +00:00
},
"Token": {
deploy: false,
args: [1000]
},
"MyToken": {
instanceOf: "Token"
},
"MyToken2": {
instanceOf: "Token",
args: [2000]
2017-02-10 00:38:02 +00:00
}
};
EmbarkSpec.deployAll(contractsConfig, done);
});
2017-02-10 02:05:45 +00:00
it("set SimpleStorage address", function(done) {
2017-02-10 00:38:02 +00:00
AnotherStorage.simpleStorageAddress(function(err, result) {
assert.equal(result.toString(), SimpleStorage.address);
done();
});
});
});