diff --git a/packages/universal/runtime/tests/description.spec.ts b/packages/universal/runtime/tests/description.spec.ts deleted file mode 100644 index 355f84e9..00000000 --- a/packages/universal/runtime/tests/description.spec.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { DEBUG } from "@starbeam/debug"; -import { expect, test } from "@starbeam-workspace/test-utils"; - -test("inferred api", () => { - expect(SomeAPI()?.api).toMatchObject({ - type: "simple", - name: "SomeAPI", - }); - - expect(ArrowFn()?.api).toMatchObject({ - type: "simple", - name: "ArrowFn", - }); -}); - -function SomeAPI() { - return DEBUG.Desc?.("cell"); -} - -const ArrowFn = () => DEBUG.Desc?.("cell");