UNPKG

alepha

Version:

Easy-to-use modern TypeScript framework for building many kind of applications.

29 lines (23 loc) 742 B
import { describe, it, test } from "vitest"; import { testTopicAsSub, testTopicBasic, testTopicLateSubscribe, testTopicRetain, } from "../../core/__tests__/shared.ts"; import { RedisTopicProvider } from "../index.ts"; describe("$topic - redis", () => { const provider = RedisTopicProvider; test("should subscribe and publish", async () => { await testTopicBasic(provider); }); test("should subscribe with handler", async () => { await testTopicAsSub(provider); }); test("should subscribe after start with provider", async () => { await testTopicLateSubscribe(provider); }); it("should deliver retained message to new subscriber", async () => { await testTopicRetain(RedisTopicProvider); }); });