mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-09-24 07:23:24 +02:00
Fixed inverted conditional in test file
Smh my head
This commit is contained in:
parent
39787f4ac0
commit
25ac2f3a74
@ -54,7 +54,7 @@ describe("Arena Tags", () => {
|
||||
const FORBIDDEN_TAGS = [ArenaTagType.NONE, ArenaTagType.NEUTRALIZING_GAS] as const;
|
||||
|
||||
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 => ({
|
||||
tagType: t,
|
||||
name: toTitleCase(t),
|
||||
|
Loading…
Reference in New Issue
Block a user