0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-04-07 23:41:43 -05:00

fix: astro:config types tests (#13391)

This commit is contained in:
Florian Lefebvre 2025-03-10 18:38:56 +01:00 committed by GitHub
parent 5a5652e4b9
commit e744674e45
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,10 +3,11 @@ import { expectTypeOf } from 'expect-type';
import type {
ClientDeserializedManifest,
ServerDeserializedManifest,
} from '../../dist/types/public';
} from '../../dist/types/public/index.js';
import '../../client.d.ts';
const server = null as typeof import('astro:config/server');
const client = null as typeof import('astro:config/client');
const server = null as unknown as typeof import('astro:config/server');
const client = null as unknown as typeof import('astro:config/client');
describe('astro:config', () => {
it('astro:config/server', () => {