mirror of https://github.com/openclaw/openclaw.git
test: split inbound contract suites by channel
This commit is contained in:
parent
2da3b45ce7
commit
93f136cbed
|
|
@ -1,28 +0,0 @@
|
|||
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();
|
||||
});
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
import { describe } from "vitest";
|
||||
import { installDiscordInboundContractSuite } from "../../../../test/helpers/channels/inbound-contract.js";
|
||||
|
||||
describe("discord inbound contract", () => {
|
||||
installDiscordInboundContractSuite();
|
||||
});
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
import { describe } from "vitest";
|
||||
import { installSignalInboundContractSuite } from "../../../../test/helpers/channels/inbound-contract.js";
|
||||
|
||||
describe("signal inbound contract", () => {
|
||||
installSignalInboundContractSuite();
|
||||
});
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
import { describe } from "vitest";
|
||||
import { installSlackInboundContractSuite } from "../../../../test/helpers/channels/inbound-contract.js";
|
||||
|
||||
describe("slack inbound contract", () => {
|
||||
installSlackInboundContractSuite();
|
||||
});
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
import { describe } from "vitest";
|
||||
import { installTelegramInboundContractSuite } from "../../../../test/helpers/channels/inbound-contract.js";
|
||||
|
||||
describe("telegram inbound contract", () => {
|
||||
installTelegramInboundContractSuite();
|
||||
});
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
import { describe } from "vitest";
|
||||
import { installWhatsAppInboundContractSuite } from "../../../../test/helpers/channels/inbound-contract.js";
|
||||
|
||||
describe("whatsapp inbound contract", () => {
|
||||
installWhatsAppInboundContractSuite();
|
||||
});
|
||||
Loading…
Reference in New Issue