| 34 | } |
| 35 | |
| 36 | @Entity() |
| 37 | class Book { |
| 38 | @PrimaryKey() |
| 39 | id!: number; |
| 40 | |
| 41 | @Property() |
| 42 | title!: string; |
| 43 | |
| 44 | @ManyToOne(() => Author) |
| 45 | author!: Author; |
| 46 | } |
| 47 | |
| 48 | describe('populateHints', () => { |
| 49 | let orm: MikroORM; |
nothing calls this directly
no test coverage detected