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