diff --git a/editor.planx.uk/src/@planx/components/ExternalPortal/Editor.test.tsx b/editor.planx.uk/src/@planx/components/ExternalPortal/Editor.test.tsx index f59445b4ca..792e6b0907 100644 --- a/editor.planx.uk/src/@planx/components/ExternalPortal/Editor.test.tsx +++ b/editor.planx.uk/src/@planx/components/ExternalPortal/Editor.test.tsx @@ -32,6 +32,7 @@ test("adding an external portal", async () => { data: { flowId: "b", tags: [], + notes: "", }, }), ); @@ -65,6 +66,7 @@ test("changing an external portal", async () => { data: { flowId: "a", tags: [], + notes: "", }, }), ); diff --git a/editor.planx.uk/src/@planx/components/InternalPortal/Editor.test.tsx b/editor.planx.uk/src/@planx/components/InternalPortal/Editor.test.tsx index f95f97f9a9..dd9e3c7cc0 100644 --- a/editor.planx.uk/src/@planx/components/InternalPortal/Editor.test.tsx +++ b/editor.planx.uk/src/@planx/components/InternalPortal/Editor.test.tsx @@ -39,6 +39,7 @@ describe("adding an internal portal", () => { flowId: "", // will be removed when saving the data text: "new internal portal", tags: [], + notes: "", }, }); }); @@ -131,6 +132,7 @@ test("updating an internal portal", async () => { flowId: "", // will be removed when saving the data text: "new val", tags: [], + notes: "", }, }); });