diff --git a/packages/astro/test/types/is-input-error.ts b/packages/astro/test/types/is-input-error.ts index ba0f7c0bc4..2ab65e3d9e 100644 --- a/packages/astro/test/types/is-input-error.ts +++ b/packages/astro/test/types/is-input-error.ts @@ -1,7 +1,7 @@ -import { expectTypeOf } from 'expect-type'; -import { isInputError, defineAction } from '../../dist/actions/runtime/virtual/server.js'; -import { z } from '../../zod.mjs'; import { describe, it } from 'node:test'; +import { expectTypeOf } from 'expect-type'; +import { defineAction, isInputError } from '../../dist/actions/runtime/virtual/server.js'; +import { z } from '../../zod.mjs'; const exampleAction = defineAction({ input: z.object({ diff --git a/packages/astro/tsconfig.tests.json b/packages/astro/tsconfig.tests.json index 1178731fa2..1984bc4fe6 100644 --- a/packages/astro/tsconfig.tests.json +++ b/packages/astro/tsconfig.tests.json @@ -4,6 +4,6 @@ "compilerOptions": { "allowJs": true, "emitDeclarationOnly": false, - "noEmit": true, + "noEmit": true } }