mirror of https://github.com/embarklabs/embark.git
17 lines
310 B
JavaScript
17 lines
310 B
JavaScript
/*global contract, config, it, assert*/
|
|
const Events = require('Embark/contracts/Events');
|
|
|
|
config({
|
|
contracts: {
|
|
"Events": {
|
|
args: [100]
|
|
}
|
|
}
|
|
});
|
|
|
|
contract("Events", function() {
|
|
it("should deposit", function(done) {
|
|
Events.methods.deposit(10).send().then(() => { done(); });
|
|
});
|
|
});
|