From 4a814e6302a8b4ce2f58ee8679a77e4224f16afc Mon Sep 17 00:00:00 2001 From: Ladd Hoffman Date: Fri, 12 Apr 2024 18:08:27 -0500 Subject: [PATCH] test that totalSupply cecreases when burning REP --- ethereum/test/Forum.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ethereum/test/Forum.js b/ethereum/test/Forum.js index 4fbf565..9aabe07 100644 --- a/ethereum/test/Forum.js +++ b/ethereum/test/Forum.js @@ -227,6 +227,7 @@ describe('Forum', () => { expect(await dao.totalSupply()).to.equal(100); await dao.evaluateOutcome(0); expect((await dao.posts(0)).reputation).to.equal(50); + expect(await dao.totalSupply()).to.equal(50); }); }); });