@laravel/echo-react
Version:
React hooks for seamless integration with Laravel Echo.
39 lines (28 loc) • 1.01 kB
text/typescript
import { beforeEach, describe, expect, it, vi } from "vitest";
describe("echo helper", () => {
beforeEach(() => {
vi.resetModules();
});
it("throws error when Echo is not configured", async () => {
const { echo } = await import("../src/config");
expect(() => echo()).toThrow("Echo has not been configured");
});
it("creates Echo instance with proper configuration", async () => {
const { configureEcho, echo } = await import("../src/config");
configureEcho({
broadcaster: "null",
});
expect(echo()).toBeDefined();
expect(echo().options.broadcaster).toBe("null");
});
it("checks if Echo is configured", async () => {
const { configureEcho, echoIsConfigured } = await import(
"../src/config"
);
expect(echoIsConfigured()).toBe(false);
configureEcho({
broadcaster: "null",
});
expect(echoIsConfigured()).toBe(true);
});
});