[Test] Set boss Pokémon test timeout to 20 seconds instead of 2.5 seconds (#3992)

This commit is contained in:
NightKev 2024-09-02 21:59:51 -07:00 committed by GitHub
parent 587360c8da
commit 97a02e7c34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ import { EnemyPokemon } from "#app/field/pokemon";
import { toDmgValue } from "#app/utils";
describe("Boss Pokemon / Shields", () => {
const TIMEOUT = 2500;
const TIMEOUT = 20 * 1000;
let phaserGame: Phaser.Game;
let game: GameManager;