Files
deer-flow/web/tests/markdown-katex.test.ts
Willem Jiang 1d71f8910e fix: react key warnings from duplicate message IDs + establish jest testing framework (#655)
* fix: resolve issue #588 - react key warnings from duplicate message IDs + establish jest testing framework

* Update the makefile and workflow with the js test

* Apply suggestions from code review

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-10-25 20:46:43 +08:00

37 lines
1.2 KiB
TypeScript

import katex from "katex";
import { katexOptions } from "../src/core/markdown/katex";
function render(expression: string) {
return katex.renderToString(expression, {
...katexOptions,
displayMode: true,
});
}
describe("markdown physics katex support", () => {
it("renders vector calculus operators", () => {
expect(() => {
render("\\curl{\\vect{B}} = \\mu_0 \\vect{J} + \\mu_0 \\varepsilon_0 \\pdv{\\vect{E}}{t}");
}).not.toThrow();
});
it("renders quantum mechanics bra-ket notation", () => {
const html = render("\\braket{\\psi}{\\phi}");
expect(html.includes("⟨") && html.includes("⟩")).toBeTruthy();
});
it("renders vector magnitude formula with subscripts and square root", () => {
const html = render("(F_1) (F_2), (F=\\sqrt{F_1^2+F_2^2})");
expect(html.includes("F")).toBeTruthy();
expect(html.includes("₁") || html.includes("sub")).toBeTruthy(); // subscript check
expect(html.includes("√") || html.includes("sqrt")).toBeTruthy(); // square root check
});
it("renders chemical equations via mhchem", () => {
expect(() => {
render("\\ce{H2O ->[\\Delta] H+ + OH-}");
}).not.toThrow();
});
});