step 10: test vote()
This commit is contained in:
parent
e0d53e26cb
commit
6ca11b2ada
|
@ -40,4 +40,10 @@ contract('DReddit', () => {
|
||||||
const userCanVote = await DReddit.methods.canVote(postId).call();
|
const userCanVote = await DReddit.methods.canVote(postId).call();
|
||||||
assert.equal(userCanVote, true);
|
assert.equal(userCanVote, true);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should be able to vote in a post', async () => {
|
||||||
|
const receipt = await DReddit.methods.vote(postId, 1).send();
|
||||||
|
const Vote = receipt.events.NewVote;
|
||||||
|
assert.equal(Vote.returnValues.owner, accounts[0]);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue