Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: PigeonBar <[email protected]>
  • Loading branch information
frutescens and PigeonBar authored Nov 29, 2024
1 parent 75f4a0a commit d32d7dc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test/abilities/wimp_out.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,7 @@ describe("Abilities - Wimp Out", () => {
game.override
.enemyMoveset(Moves.SPLASH)
.enemySpecies(Species.WIMPOD)
.enemyAbility(Abilities.WIMP_OUT)
.moveset([ Moves.MATCHA_GOTCHA, Moves.FALSE_SWIPE ])
.startingLevel(50)
.enemyLevel(1)
Expand All @@ -650,6 +651,7 @@ describe("Abilities - Wimp Out", () => {

game.move.select(Moves.FALSE_SWIPE, 0, BattlerIndex.ENEMY);
game.move.select(Moves.MATCHA_GOTCHA, 1);
await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2]);

Check failure on line 654 in src/test/abilities/wimp_out.test.ts

View workflow job for this annotation

GitHub Actions / Run linters

A space is required after '['

Check failure on line 654 in src/test/abilities/wimp_out.test.ts

View workflow job for this annotation

GitHub Actions / Run linters

A space is required before ']'
await game.phaseInterceptor.to("TurnEndPhase");

expect(wimpod0.hp).toBeGreaterThan(0);
Expand Down

0 comments on commit d32d7dc

Please sign in to comment.