test that totalSupply cecreases when burning REP
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 30s Details

This commit is contained in:
Ladd Hoffman 2024-04-12 18:08:27 -05:00
parent a49b42858a
commit 4a814e6302
1 changed files with 1 additions and 0 deletions

View File

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