From f34a2f27d74f5e0b62c4eb9f8ada0eff88ffd803 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Mon, 31 Mar 2025 19:52:51 -0700 Subject: [PATCH] add redis notification repository tests back for edge cases --- ...ryTests.ts => NotificationRepositorySharedTests.test.ts} | 0 test/repositories/RedisNotificationRepositoryTests.test.ts | 6 ++++++ 2 files changed, 6 insertions(+) rename test/repositories/{NotificationRepositoryTests.ts => NotificationRepositorySharedTests.test.ts} (100%) create mode 100644 test/repositories/RedisNotificationRepositoryTests.test.ts diff --git a/test/repositories/NotificationRepositoryTests.ts b/test/repositories/NotificationRepositorySharedTests.test.ts similarity index 100% rename from test/repositories/NotificationRepositoryTests.ts rename to test/repositories/NotificationRepositorySharedTests.test.ts diff --git a/test/repositories/RedisNotificationRepositoryTests.test.ts b/test/repositories/RedisNotificationRepositoryTests.test.ts new file mode 100644 index 0000000..7a3dcaf --- /dev/null +++ b/test/repositories/RedisNotificationRepositoryTests.test.ts @@ -0,0 +1,6 @@ +// Test additional edge cases like Redis failing to connect, etc. + +import { describe, it } from "@jest/globals"; + +describe("RedisNotificationRepository", () => { +});