Skip to content

Commit acd262c

Browse files
committedJul 16, 2021
test(schema): repro #10436
1 parent 16b6a37 commit acd262c

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
 

‎test/schema.test.js

+21
Original file line numberDiff line numberDiff line change
@@ -2604,6 +2604,27 @@ describe('schema', function() {
26042604
assert.equal(schema.virtuals.displayAs.applyGetters(null, { name: 'test' }), 'test');
26052605
});
26062606

2607+
it('loadClass with static getter (gh-10436)', function() {
2608+
const schema = new mongoose.Schema({
2609+
firstName: String,
2610+
lastName: String
2611+
});
2612+
2613+
class UserClass extends mongoose.Model {
2614+
get fullName() {
2615+
return `${this.firstName} ${this.lastName}`;
2616+
}
2617+
2618+
static get greeting() {
2619+
return 'Hello World';
2620+
}
2621+
}
2622+
2623+
const User = mongoose.model(UserClass, schema);
2624+
2625+
assert.equal(User.greeting, 'Hello World');
2626+
});
2627+
26072628
it('supports setting `ref` on array SchemaType (gh-10029)', function() {
26082629
const testSchema = new mongoose.Schema({
26092630
doesntpopulate: {

0 commit comments

Comments
 (0)
Please sign in to comment.