25 lines
609 B
JavaScript
25 lines
609 B
JavaScript
/*global contract, config, it*/
|
|
const assert = require('assert');
|
|
const AnotherStorage = require('Embark/contracts/AnotherStorage');
|
|
const SimpleStorage = require('Embark/contracts/SimpleStorage');
|
|
|
|
config({
|
|
contracts: {
|
|
"SimpleStorage": {
|
|
args: [100]
|
|
},
|
|
"AnotherStorage": {
|
|
args: ["$SimpleStorage"]
|
|
}
|
|
}
|
|
});
|
|
|
|
contract("AnotherStorage", function() {
|
|
this.timeout(0);
|
|
|
|
it("set SimpleStorage address", async function() {
|
|
let result = await AnotherStorage.methods.simpleStorageAddress().call();
|
|
assert.equal(result.toString(), SimpleStorage.options.address);
|
|
});
|
|
});
|