Skip to content

Commit

Permalink
[playwright] chore: Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
helloitsdave committed May 11, 2024
1 parent 8820377 commit 86aef95
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion backend/tests/service/users.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ describe('Authenticated Flows', () => {
});

test('Create a new User', async () => {
const randomUsername = Math.random().toString(36).substring(7);
const response = await request(USERS_URL)
.post('/')
.set('Authorization', `Bearer ${token}`)
Expand Down
2 changes: 1 addition & 1 deletion backend/tests/unit/users.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ describe('Create User', () => {

describe('Delete User', () => {
test('DELETE with id', async ({}) => {
prisma.user.delete.mockResolvedValue({
prisma.user.delete.mockResolvedValue({
id: 'gcf89a7e-b941-4f17-bbe0-4e0c8b2cd272',
username: 'Dave',
password: 'check',
Expand Down

0 comments on commit 86aef95

Please sign in to comment.