Skip to content

Commit 17ee131

Browse files
committedJan 3, 2023
add test
1 parent baea9f5 commit 17ee131

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
 

‎test/types/schema.test.ts

+20
Original file line numberDiff line numberDiff line change
@@ -982,3 +982,23 @@ function gh12782() {
982982
function gh12816() {
983983
const schema = new Schema({}, { overwriteModels: true });
984984
}
985+
986+
function gh12869() {
987+
const dbExampleConst = new Schema(
988+
{
989+
active: { type: String, enum: ["foo", "bar"] as const, required: true }
990+
}
991+
);
992+
993+
type ExampleConst = InferSchemaType<typeof dbExampleConst>;
994+
expectType<"foo" | "bar">({} as ExampleConst['active']);
995+
996+
const dbExample = new Schema(
997+
{
998+
active: { type: String, enum: ["foo", "bar"], required: true }
999+
}
1000+
);
1001+
1002+
type Example = InferSchemaType<typeof dbExample>;
1003+
expectType<"foo" | "bar">({} as Example['active']);
1004+
}

0 commit comments

Comments
 (0)
Please sign in to comment.