mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-12 23:05:07 +00:00
b021689387
This commit adds a convenience API `artifacts.require(name)` that aims to make requiring artifacts a little bit more straight forward. Usage: ``` const SimpleStorage = artifacts.require('SimpleStorage'); const EmbarkJS = artifacts.require('EmbarkJS'); ```
29 lines
643 B
JavaScript
29 lines
643 B
JavaScript
/*global artifacts, contract, config, it*/
|
|
const assert = require('assert');
|
|
const PluginStorage = artifacts.require('PluginStorage');
|
|
const SimpleStorage = artifacts.require('SimpleStorage');
|
|
|
|
config({
|
|
contracts: {
|
|
deploy: {
|
|
"SimpleStorage": {
|
|
args: [100]
|
|
},
|
|
"PluginStorage": {
|
|
args: ["$SimpleStorage"]
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
|
|
contract("PluginSimpleStorage", function () {
|
|
this.timeout(0);
|
|
|
|
it("set SimpleStorage address", async function () {
|
|
let result = await PluginStorage.methods.simpleStorageAddress().call();
|
|
assert.equal(result.toString(), SimpleStorage.options.address);
|
|
});
|
|
|
|
});
|