mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-07 22:09:57 +00:00
Add CLI and infra test coverage
This commit is contained in:
10
src/webhook/server.test.ts
Normal file
10
src/webhook/server.test.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
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);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user