Skip to content

Commit

Permalink
test: add extra expect()
Browse files Browse the repository at this point in the history
  • Loading branch information
andretchen0 committed Jul 16, 2023
1 parent d3b0546 commit 76713f3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/__tests__/creature.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ describe('Creature', () => {
creature.hinder();
expect(creature.isHindered).toBe(true);
creature.activate();
expect(creature.isHindered).toBe(true);
creature.deactivate('turn-end');
expect(creature.isHindered).toBe(false);
});
Expand Down

0 comments on commit 76713f3

Please sign in to comment.