mirror of https://github.com/openclaw/openclaw.git
24 lines
741 B
TypeScript
24 lines
741 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { markdownToIRWithMeta } from "./ir.js";
|
|
|
|
describe("markdownToIRWithMeta tableMode block", () => {
|
|
it("collects table metadata without inlining table text", () => {
|
|
const { ir, hasTables, tables } = markdownToIRWithMeta(
|
|
"Before\n\n| Name | Age |\n|---|---|\n| Alice | 30 |\n\nAfter",
|
|
{ tableMode: "block" },
|
|
);
|
|
|
|
expect(hasTables).toBe(true);
|
|
expect(tables).toEqual([
|
|
{
|
|
headers: ["Name", "Age"],
|
|
rows: [["Alice", "30"]],
|
|
placeholderOffset: ir.text.indexOf("After"),
|
|
},
|
|
]);
|
|
expect(ir.text).toContain("Before");
|
|
expect(ir.text).toContain("After");
|
|
expect(ir.text).not.toContain("| Name | Age |");
|
|
});
|
|
});
|