Skip to content

Commit

Permalink
test: update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
beeman committed Jan 9, 2024
1 parent 99202b2 commit 76e7b3f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion libs/api/user/data-access/src/lib/api-user-user.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export class ApiUserUserService {
}

async findOneUser(username: string) {
console.log(`username`, username)
const found = await this.core.data.user.findUnique({ where: { username } })

if (!found) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ describe('api-test-feature', () => {
expect(res.data.paging.meta.totalCount).toBeGreaterThan(1)
expect(res.data.paging.data.length).toBeGreaterThan(1)
// First item should be the one we created above
console.log(res.data.paging.data)
expect(res.data.paging.data[0].id).toBe(testId)
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ describe('api-test-feature', () => {
expect(res.data.paging.meta.totalCount).toBeGreaterThan(1);
expect(res.data.paging.data.length).toBeGreaterThan(1);
// First item should be the one we created above
console.log(res.data.paging.data);
expect(res.data.paging.data[0].id).toBe(testId);
});
Expand Down

0 comments on commit 76e7b3f

Please sign in to comment.