mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-27 09:02:15 +00:00
test: centralize inbound contract suites
This commit is contained in:
28
src/channels/plugins/contracts/inbound.contract.test.ts
Normal file
28
src/channels/plugins/contracts/inbound.contract.test.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
import { describe } from "vitest";
|
||||
import {
|
||||
installDiscordInboundContractSuite,
|
||||
installSignalInboundContractSuite,
|
||||
installSlackInboundContractSuite,
|
||||
installTelegramInboundContractSuite,
|
||||
installWhatsAppInboundContractSuite,
|
||||
} from "../../../../test/helpers/channels/inbound-contract.js";
|
||||
|
||||
describe("discord inbound contract", () => {
|
||||
installDiscordInboundContractSuite();
|
||||
});
|
||||
|
||||
describe("signal inbound contract", () => {
|
||||
installSignalInboundContractSuite();
|
||||
});
|
||||
|
||||
describe("slack inbound contract", () => {
|
||||
installSlackInboundContractSuite();
|
||||
});
|
||||
|
||||
describe("telegram inbound contract", () => {
|
||||
installTelegramInboundContractSuite();
|
||||
});
|
||||
|
||||
describe("whatsapp inbound contract", () => {
|
||||
installWhatsAppInboundContractSuite();
|
||||
});
|
||||
Reference in New Issue
Block a user