Skip to content

Commit

Permalink
test: improve coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
B4nan committed Apr 12, 2024
1 parent 3b4fc41 commit 48bd922
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/issues/GH5445.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,11 @@ test('define joined columns in leftJoinAndSelect()', async () => {
'name',
'biography',
])
.leftJoinAndSelect('post.comments', 'comments')
.leftJoinAndSelect('post.comments', 'comments', {}, [
'comments.content',
'comments.created_at',
'comments.updated_at',
])
.where({ id: 5 })
.getResult();

Expand Down

0 comments on commit 48bd922

Please sign in to comment.