mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-07 22:09:57 +00:00
11 lines
282 B
TypeScript
11 lines
282 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
|
|
import * as impl from "../twilio/webhook.js";
|
|
import * as entry from "./server.js";
|
|
|
|
describe("webhook server wrapper", () => {
|
|
it("re-exports startWebhook", () => {
|
|
expect(entry.startWebhook).toBe(impl.startWebhook);
|
|
});
|
|
});
|