diff --git a/test/orm/base-model.spec.ts b/test/orm/base-model.spec.ts index 5f53e1d0..7f3bdd5b 100644 --- a/test/orm/base-model.spec.ts +++ b/test/orm/base-model.spec.ts @@ -6084,7 +6084,6 @@ test.group('Base Model | toObject', (group) => { }) }) - // TODO: I'm not really checking the author, so can probably just remove... test('add preloaded belongsTo relationship to toObject result', async ({ assert }) => { class Category extends BaseModel { @column({ isPrimary: true }) @@ -6104,9 +6103,6 @@ test.group('Base Model | toObject', (group) => { @column() public title: string - @column() - public userId: number - @hasOne(() => Category) public category: HasOne }