Fixed inverted conditional in test file

Smh my head
This commit is contained in:
Bertie690 2025-08-21 10:10:09 -04:00 committed by GitHub
parent 39787f4ac0
commit 25ac2f3a74
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -54,7 +54,7 @@ describe("Arena Tags", () => {
const FORBIDDEN_TAGS = [ArenaTagType.NONE, ArenaTagType.NEUTRALIZING_GAS] as const; const FORBIDDEN_TAGS = [ArenaTagType.NONE, ArenaTagType.NEUTRALIZING_GAS] as const;
const arenaTags = Object.values(ArenaTagType) const arenaTags = Object.values(ArenaTagType)
.filter(t => (FORBIDDEN_TAGS as readonly ArenaTagType[]).includes(t)) .filter(t => !(FORBIDDEN_TAGS as readonly ArenaTagType[]).includes(t))
.map(t => ({ .map(t => ({
tagType: t, tagType: t,
name: toTitleCase(t), name: toTitleCase(t),