mirror of https://github.com/embarklabs/embark.git
33 lines
840 B
JavaScript
33 lines
840 B
JavaScript
/*global contract, config, it*/
|
|
const assert = require('assert');
|
|
const AnotherStorage = require('Embark/contracts/AnotherStorage');
|
|
const SimpleStorage = require('Embark/contracts/SimpleStorage');
|
|
let accounts;
|
|
|
|
config({
|
|
contracts: {
|
|
"SimpleStorage": {
|
|
args: [100]
|
|
},
|
|
"AnotherStorage": {
|
|
args: ["$SimpleStorage", "embark.eth"]
|
|
}
|
|
}
|
|
}, (err, accs) => {
|
|
accounts = accs;
|
|
});
|
|
|
|
contract("AnotherStorage", function() {
|
|
this.timeout(0);
|
|
|
|
it("set SimpleStorage address", async function() {
|
|
const result = await AnotherStorage.methods.simpleStorageAddress().call();
|
|
assert.equal(result.toString(), SimpleStorage.options.address);
|
|
});
|
|
|
|
it("set ENS address", async function() {
|
|
const result = await AnotherStorage.methods.ens().call();
|
|
assert.equal(result.toString(), accounts[0]);
|
|
});
|
|
});
|