mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-07 15:21:06 +00:00
test: split inbound contract suites by channel
This commit is contained in:
@@ -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();
|
||||
});
|
||||
Reference in New Issue
Block a user