0.29.1原版

This commit is contained in:
anian
2026-07-02 19:14:14 +08:00
commit d94008f0fb
947 changed files with 174905 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
import { describe, expect, it } from "vitest";
import { checkAllTasks, uncheckAllTasks } from "@/utils/markdown-task-actions";
describe("checkAllTasks", () => {
it("checks every unchecked task while preserving source formatting", () => {
const markdown = ["Intro", "- [ ] first", "* [x] second", " + [ ] nested", "1. [ ] ordered", "Outro"].join("\n");
expect(checkAllTasks(markdown)).toBe(["Intro", "- [x] first", "* [x] second", " + [x] nested", "1. [x] ordered", "Outro"].join("\n"));
});
it("returns the original string when no checkbox markers need changing", () => {
const markdown = ["Intro", "- [x] first", "Outro"].join("\n");
expect(checkAllTasks(markdown)).toBe(markdown);
});
});
describe("uncheckAllTasks", () => {
it("unchecks every checked task while preserving source formatting", () => {
const markdown = ["Intro", "- [x] first", "* [X] second", " + [ ] nested", "1. [x] ordered", "Outro"].join("\n");
expect(uncheckAllTasks(markdown)).toBe(["Intro", "- [ ] first", "* [ ] second", " + [ ] nested", "1. [ ] ordered", "Outro"].join("\n"));
});
it("returns the original string when no checkbox markers need changing", () => {
const markdown = ["Intro", "- [ ] first", "Outro"].join("\n");
expect(uncheckAllTasks(markdown)).toBe(markdown);
});
it("ignores task-looking text inside fenced and inline code", () => {
const markdown = ["```", "- [x] not a task", "```", "", "Inline `- [x] not a task` text", "", "- [x] real task"].join("\n");
expect(uncheckAllTasks(markdown)).toBe(
["```", "- [x] not a task", "```", "", "Inline `- [x] not a task` text", "", "- [ ] real task"].join("\n"),
);
});
});