Fixed tests to not check neutralizing gas msgs

This commit is contained in:
Bertie690 2025-08-20 21:51:46 -04:00
parent 3b518b0d94
commit 7f41be4513

View File

@ -50,8 +50,11 @@ describe("Arena Tags", () => {
game.textInterceptor.logs = [];
});
// These tags are either ineligible or just jaaaaaaaaaaank
const FORBIDDEN_TAGS = [ArenaTagType.NONE, ArenaTagType.NEUTRALIZING_GAS] as const;
const arenaTags = Object.values(ArenaTagType)
.filter(t => t !== ArenaTagType.NONE)
.filter(t => (FORBIDDEN_TAGS as readonly ArenaTagType[]).includes(t))
.map(t => ({
tagType: t,
name: toTitleCase(t),