We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f14a5b0 commit 88187c5Copy full SHA for 88187c5
test/types/schema.test.ts
@@ -2089,8 +2089,8 @@ function gh15751() {
2089
2090
function gh15798() {
2091
const schema1 = new Schema({ name: String }, { statics: { testMe() { } }, versionKey: false });
2092
- model("M1", schema1).testMe();
+ model('M1', schema1).testMe();
2093
2094
const schema2 = new Schema({ name: String }, { statics: { testMe() { } }, timestamps: true });
2095
- model("M2", schema2).testMe();
+ model('M2', schema2).testMe();
2096
}
0 commit comments