diff --git a/tests/App.test.svelte b/tests/App.test.svelte index 3ef5ac3daa..de04ad2fe1 100644 --- a/tests/App.test.svelte +++ b/tests/App.test.svelte @@ -1,5 +1,54 @@ - - +
+
+ ({ + id: route.path, + text: route.name, + }))} + on:select={(e) => { + navigate(e.detail.id.toString()); + }} + /> +
+
+ {#each routes as route (route.path)} + {#if currentPath === route.path} + + {/if} + {/each} +
+