Skip to content

Commit 71c575d

Browse files
committed
chore: lint test
1 parent b386703 commit 71c575d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/feature/model/Delete.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,9 @@ describe('Feature - Model - Delete', () => {
334334
data: { id: 1, name: 'John Doe', post: [{ id: 2 }, { id: 3 }] }
335335
})
336336

337-
const user = User.query().with('post').find(1) as User
337+
const user = User.query()
338+
.with('post')
339+
.find(1) as User
338340

339341
expect(user.name).toBe('John Doe')
340342
expect(user.post).toBeInstanceOf(Post)

0 commit comments

Comments
 (0)