Implement fromJSON, export, toJSON, toString serialization for FlowGraph

This commit is contained in:
2026-05-21 21:51:24 +00:00
parent 7a5bd2f513
commit 5cfc8882bd
3 changed files with 294 additions and 8 deletions

View File

@@ -303,10 +303,6 @@ describe("FlowGraph static stubs", () => {
it("fromCallEvents throws not implemented", () => {
expect(() => FlowGraph.fromCallEvents([])).toThrow("not implemented");
});
it("fromJSON throws not implemented", () => {
expect(() => FlowGraph.fromJSON({})).toThrow("not implemented");
});
});
describe("FlowGraph.addOperation", () => {