File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -2604,6 +2604,27 @@ describe('schema', function() {
2604
2604
assert . equal ( schema . virtuals . displayAs . applyGetters ( null , { name : 'test' } ) , 'test' ) ;
2605
2605
} ) ;
2606
2606
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
+
2607
2628
it ( 'supports setting `ref` on array SchemaType (gh-10029)' , function ( ) {
2608
2629
const testSchema = new mongoose . Schema ( {
2609
2630
doesntpopulate : {
You can’t perform that action at this time.
0 commit comments