From f739cdf3d9b9f2d40a915d4efcf424fc46e96210 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Mon, 15 May 2023 13:42:21 +0100 Subject: [PATCH] test: disable type test for now --- test/fixtures/basic/server/api/useAsyncData/count.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/basic/server/api/useAsyncData/count.ts b/test/fixtures/basic/server/api/useAsyncData/count.ts index ac2f27d685d4..b529bb034ce1 100644 --- a/test/fixtures/basic/server/api/useAsyncData/count.ts +++ b/test/fixtures/basic/server/api/useAsyncData/count.ts @@ -1,7 +1,7 @@ let counter = 0 const test = () => () => { - // @ts-expect-error useNuxtApp should be undefined in a nitro route + // TODO: useNuxtApp should be undefined when type-testing a nitro route useNuxtApp() } test()