mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 15:30:39 +00:00
11 lines
278 B
TypeScript
11 lines
278 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);
|
|
});
|
|
});
|