mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-09-24 07:23:24 +02:00
Fixed tests to not check neutralizing gas msgs
This commit is contained in:
parent
3b518b0d94
commit
7f41be4513
@ -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),
|
||||
|
Loading…
Reference in New Issue
Block a user