Files
dapp-bin/Bamboo/test/contract_spec.js
2018-06-18 13:02:35 -04:00

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);
});
});