remove "TIMEOUT" reference from create-test-boilerplate

This commit is contained in:
flx-sta 2024-09-19 21:38:23 -07:00
parent ce6e42ae5c
commit aef36b4bc9

View File

@ -76,7 +76,6 @@ import { afterEach, beforeAll, beforeEach, describe, it, expect } from "vitest";
describe("${description}", () => {
let phaserGame: Phaser.Game;
let game: GameManager;
const TIMEOUT = 20 * 1000;
beforeAll(() => {
phaserGame = new Phaser.Game({
@ -100,7 +99,7 @@ describe("${description}", () => {
it("test case", async () => {
// await game.classicMode.startBattle([Species.MAGIKARP]);
// game.move.select(Moves.SPLASH);
}, TIMEOUT);
});
});
`;