diff --git a/test/moves/copycat.test.ts b/test/moves/copycat.test.ts index bfe4dd2f954..5376ff67ecc 100644 --- a/test/moves/copycat.test.ts +++ b/test/moves/copycat.test.ts @@ -35,7 +35,7 @@ describe("Moves - Copycat", () => { .enemyMoveset(MoveId.SPLASH); }); - it("should copy the last move successfully executed", async () => { + it("should copy the last move executed across turns", async () => { game.override.enemyMoveset(MoveId.SUCKER_PUNCH); await game.classicMode.startBattle([SpeciesId.FEEBAS]); @@ -43,6 +43,7 @@ describe("Moves - Copycat", () => { await game.toNextTurn(); game.move.select(MoveId.COPYCAT); // Last successful move should be Swords Dance + await game.move.forceEnemyMove(MoveId.SPLASH); await game.toNextTurn(); expect(game.field.getPlayerPokemon().getStatStage(Stat.ATK)).toBe(4);