From 6a8426728678bbc38ff64df7b1243fab8d59864f Mon Sep 17 00:00:00 2001 From: Chris Parsons Date: Thu, 26 Mar 2026 00:30:03 -0700 Subject: [PATCH] Fix missing afterEach import in wnba standings test Co-Authored-By: Claude Sonnet 4.6 --- app/services/standings-sync/__tests__/wnba.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/services/standings-sync/__tests__/wnba.test.ts b/app/services/standings-sync/__tests__/wnba.test.ts index b610ebb..11a5621 100644 --- a/app/services/standings-sync/__tests__/wnba.test.ts +++ b/app/services/standings-sync/__tests__/wnba.test.ts @@ -1,4 +1,4 @@ -import { describe, it, expect, vi, beforeEach } from "vitest"; +import { describe, it, expect, vi, beforeEach, afterEach } from "vitest"; import { WnbaStandingsAdapter } from "../wnba"; function makeStat(name: string, value: number, displayValue?: string) {