From 839a099b3a763fcc4f1d8b2a3df26fa47bccc83d Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Thu, 7 Aug 2025 21:28:43 -0400 Subject: [PATCH] Update test/@types/vitest.d.ts Co-authored-by: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> --- test/@types/vitest.d.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/@types/vitest.d.ts b/test/@types/vitest.d.ts index 04c017f8e73..a8fb92fa09c 100644 --- a/test/@types/vitest.d.ts +++ b/test/@types/vitest.d.ts @@ -60,9 +60,7 @@ declare module "vitest" { /** * Check whether the current {@linkcode Arena} contains the given {@linkcode ArenaTag}. * @param expectedType - The {@linkcode ArenaTagType} of the desired tag - * @param side - The {@linkcode ArenaTagSide | side of the field} the tag should affect, or - * {@linkcode ArenaTagSide.BOTH} to check both sides; - * default `ArenaTagSide.BOTH` + * @param side - The {@linkcode ArenaTagSide | side(s) of the field} the tag should affect; default {@linkcode ArenaTagSide.BOTH} */ toHaveArenaTag(expectedType: ArenaTagType, side?: ArenaTagSide): void;