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:
parent
5a5652e4b9
commit
e744674e45
1 changed files with 4 additions and 3 deletions
|
@ -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', () => {
|
||||
|
|
Loading…
Add table
Reference in a new issue