Update test to use projectDocument instead of document

This commit is contained in:
2026-04-11 03:50:31 +02:00
parent ac5febcb11
commit fe1d81b3a4

View File

@@ -139,7 +139,10 @@ describe("App project persistence controls", () => {
});
await waitFor(() => {
expect(saveProjectPackageMock).toHaveBeenCalledWith(store.getState().document, null);
expect(saveProjectPackageMock).toHaveBeenCalledWith(
store.getState().projectDocument,
null
);
});
});
});