Skip to content

Commit f0a3754

Browse files
committed
test: add test for ViteTypeOptions
1 parent 1de9b3e commit f0a3754

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// This file tests `ViteTypeOptions` in `packages/vite/types/importMeta.d.ts`
2+
import type { ExpectFalse, ExpectTrue } from '@type-challenges/utils'
3+
4+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
5+
interface TypeOptions1 {}
6+
interface TypeOptions2 {
7+
strictImportMetaEnv: unknown
8+
}
9+
interface TypeOptions3 {
10+
unknownKey: unknown
11+
}
12+
13+
type IsEnabled<Opts, Key extends string> = Key extends keyof Opts ? true : false
14+
15+
export type cases = [
16+
ExpectFalse<IsEnabled<TypeOptions1, 'strictImportMetaEnv'>>,
17+
ExpectTrue<IsEnabled<TypeOptions2, 'strictImportMetaEnv'>>,
18+
ExpectFalse<IsEnabled<TypeOptions3, 'strictImportMetaEnv'>>,
19+
]
20+
21+
export {}

0 commit comments

Comments
 (0)