From 68cacfcbd54da1affdb07badd9c41aa5fd3943b8 Mon Sep 17 00:00:00 2001 From: king8fisher <140904760+king8fisher@users.noreply.github.com> Date: Fri, 15 Nov 2024 19:43:14 -0500 Subject: [PATCH] skip the test that queries the latest patch --- src/data/patch.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/patch.test.ts b/src/data/patch.test.ts index a03b94f..0aff585 100644 --- a/src/data/patch.test.ts +++ b/src/data/patch.test.ts @@ -11,7 +11,7 @@ export interface Patches { total_games: number; } -test("latest patch", async () => { +test.skip("latest patch", async () => { const p = await fetch("https://aoestats.io/api/patches/?format=json"); const json = (await p.json()) as Patches[]; let max: Patches | undefined;