step 10: test vote()

This commit is contained in:
Pascal Precht
2019-02-05 16:29:42 +01:00
parent e0d53e26cb
commit 6ca11b2ada
+6
View File
@@ -40,4 +40,10 @@ contract('DReddit', () => {
const userCanVote = await DReddit.methods.canVote(postId).call();
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]);
});
});