mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-25 17:02:46 +00:00
Merged via squash.
Prepared head SHA: d30fff1776
Co-authored-by: echo931 <259437483+echo931@users.noreply.github.com>
Co-authored-by: mukhtharcm <56378562+mukhtharcm@users.noreply.github.com>
Reviewed-by: @mukhtharcm
17 lines
482 B
TypeScript
17 lines
482 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { DEFAULT_TABLE_MODES } from "./markdown-tables.js";
|
|
|
|
describe("DEFAULT_TABLE_MODES", () => {
|
|
it("mattermost mode is off", () => {
|
|
expect(DEFAULT_TABLE_MODES.get("mattermost")).toBe("off");
|
|
});
|
|
|
|
it("signal mode is bullets", () => {
|
|
expect(DEFAULT_TABLE_MODES.get("signal")).toBe("bullets");
|
|
});
|
|
|
|
it("whatsapp mode is bullets", () => {
|
|
expect(DEFAULT_TABLE_MODES.get("whatsapp")).toBe("bullets");
|
|
});
|
|
});
|