From 1c631a1b6fba2f48ef1ca8f577d216943d85cd44 Mon Sep 17 00:00:00 2001 From: Matt Aitken Date: Thu, 12 Dec 2024 14:39:35 +0000 Subject: [PATCH] =?UTF-8?q?Skip=20the=20RealtimeClient=20tests=20for=20now?= =?UTF-8?q?=20in=20CI=E2=80=A6=20flaky?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/webapp/test/realtimeClient.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/webapp/test/realtimeClient.test.ts b/apps/webapp/test/realtimeClient.test.ts index 7323b9a2d2..bcd4dffb81 100644 --- a/apps/webapp/test/realtimeClient.test.ts +++ b/apps/webapp/test/realtimeClient.test.ts @@ -2,7 +2,7 @@ import { containerWithElectricAndRedisTest } from "@internal/testcontainers"; import { expect, describe } from "vitest"; import { RealtimeClient } from "../app/services/realtimeClient.server.js"; -describe("RealtimeClient", () => { +describe.skipIf(process.env.GITHUB_ACTIONS)("RealtimeClient", () => { containerWithElectricAndRedisTest( "Should only track concurrency for live requests", { timeout: 30_000 },