From f936cc067d7ee0e49eab11e1497c51b61e01887a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dafydd=20Ll=C5=B7r=20Pearson?= Date: Tue, 10 Sep 2024 16:52:53 +0100 Subject: [PATCH] test: Setup test.todos() --- .../FlowEditor/lib/__tests__/getURLForNode.test.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 editor.planx.uk/src/pages/FlowEditor/lib/__tests__/getURLForNode.test.ts diff --git a/editor.planx.uk/src/pages/FlowEditor/lib/__tests__/getURLForNode.test.ts b/editor.planx.uk/src/pages/FlowEditor/lib/__tests__/getURLForNode.test.ts new file mode 100644 index 0000000000..8aba988f91 --- /dev/null +++ b/editor.planx.uk/src/pages/FlowEditor/lib/__tests__/getURLForNode.test.ts @@ -0,0 +1,11 @@ +describe("constructing URLs for nodes", () => { + test.todo("a question node on the root"); + test.todo("an answer node, of a question on the root"); + test.todo("a question node, deeply branched"); + test.todo("an answer node, of a deeply branched question"); + test.todo("a question node, within an internal portal"); + test.todo("an answer node, within an internal portal"); + test.todo("a question node, deeply within internal portals"); + test.todo("an answer node, deeply within internal portals"); + test.todo("a cloned node"); +});