This commit is contained in:
Jon Staab
2025-04-09 11:35:09 -07:00
parent 5f3624b8f3
commit 728ad1fba0
37 changed files with 1039 additions and 2183 deletions
+1 -3
View File
@@ -8,9 +8,7 @@ describe("Content Parsing", () => {
describe("Basic Parsing", () => {
it("should parse plain text", () => {
const result = parse({content: "Hello world"})
expect(result).toEqual([
{type: ParsedType.Text, value: "Hello world", raw: "Hello world"},
])
expect(result).toEqual([{type: ParsedType.Text, value: "Hello world", raw: "Hello world"}])
})
it("should parse newlines", () => {