Files
openclaw/extensions/reef/index.test.ts
Peter Steinberger c56d1bbbbb fix(reef): send through the connected gateway (#107373)
* fix(reef): route outbound through gateway

* chore: keep Reef release note in PR
2026-07-14 04:08:36 -07:00

12 lines
427 B
TypeScript

import { describe, expect, it } from "vitest";
import reefEntry from "./index.js";
import { reefPlugin } from "./src/channel.js";
import { reefOutboundAdapter } from "./src/outbound.js";
describe("reef bundled entry", () => {
it("keeps outbound delivery on the canonical channel plugin", () => {
expect(reefEntry.loadChannelOutbound).toBeUndefined();
expect(reefPlugin.outbound).toBe(reefOutboundAdapter);
});
});