diff --git a/src/lib/components/TestComponent.svelte b/src/lib/components/TestComponent.svelte
deleted file mode 100644
index 7dfcd36cdb64553693558a1d9a22c4eef77a9479..0000000000000000000000000000000000000000
--- a/src/lib/components/TestComponent.svelte
+++ /dev/null
@@ -1,14 +0,0 @@
-<script lang="ts">
-  let { variable } = $props()
-
-  const yFromQuantile = (_variableA: string = variable.a) => {
-    return _variableA
-  }
-
-  const arr = [0, 1, 2]
-</script>
-
-{#each arr as item}
-  {@const val = yFromQuantile()}
-  {val}
-{/each}
diff --git a/src/routes/test/+page.svelte b/src/routes/test/+page.svelte
deleted file mode 100644
index 5543ba48bed86fe0dd2dea125f4b9556b1c0d0e9..0000000000000000000000000000000000000000
--- a/src/routes/test/+page.svelte
+++ /dev/null
@@ -1,45 +0,0 @@
-<script lang="ts">
-  import TestComponent from "$lib/components/TestComponent.svelte"
-
-  let variable = $state({
-    a: 1,
-    b: 2,
-  })
-
-  setTimeout(() => {
-    variable = undefined
-  }, 3000)
-</script>
-
-{#if variable !== undefined}
-  <TestComponent {variable} />
-{:else}
-  success
-{/if}
-
-<!--<script lang="ts">-->
-<!--  import { untrack } from "svelte"-->
-
-<!--  let x = $state(0)-->
-<!--  let variable = $state({-->
-<!--    a: 1,-->
-<!--    b: 2,-->
-<!--  })-->
-
-<!--  $effect(() => {-->
-<!--    if (x) {-->
-<!--      untrack(() => {-->
-<!--        variable = {-->
-<!--          a: 3,-->
-<!--          b: 4,-->
-<!--        }-->
-
-<!--        $inspect(variable.a)-->
-<!--      })-->
-<!--    }-->
-<!--  })-->
-<!--</script>-->
-
-<!--<button onclick={() => x++}> Plus </button>-->
-
-<!--{x}-->