Fix JSON serialization in project document test

This commit is contained in:
2026-04-11 04:41:32 +02:00
parent 61d3bef338
commit e01eb777b7

View File

@@ -103,7 +103,7 @@ describe("project document JSON", () => {
});
expect(() =>
parseProjectDocumentJson(serializeProjectDocument(document))
parseProjectDocumentJson(JSON.stringify(document))
).toThrow("target entry");
});
});