mirror of
https://github.com/embarklabs/dapp-bin.git
synced 2026-09-01 06:01:15 +00:00
24 lines
406 B
JavaScript
24 lines
406 B
JavaScript
/*global contract, config, it, assert */
|
|
const Auction = require('Embark/contracts/auction');
|
|
|
|
config({
|
|
contracts: {
|
|
"auction": {
|
|
args: [
|
|
"0x4a17f35f0a9927fb4141aa91cbbc72c1b31598de",
|
|
100,
|
|
200
|
|
]
|
|
}
|
|
}
|
|
});
|
|
|
|
describe("Auction", function() {
|
|
this.timeout(0);
|
|
|
|
it("should deploy using the plugin", async function() {
|
|
assert.ok(Auction.address);
|
|
});
|
|
|
|
});
|