Skip to content

Commit 109db33

Browse files
committed
Revert "Merge pull request #3 from ShantKhatri/fix/uat-configuration"
This reverts commit 4f26f5e, reversing changes made to dd20696.
1 parent efd815c commit 109db33

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/uat.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,9 @@ jobs:
6565
working-directory: apps/backend
6666
run: npm ci
6767

68-
# TODO: Once tests are fixed, uncomment the following lines
69-
# - name: Run tests
70-
# working-directory: apps/backend
71-
# run: npm test
68+
- name: Run tests
69+
working-directory: apps/backend
70+
run: npm test
7271

7372
- name: Build and push Docker image
7473
run: |

apps/backend/src/routes/cards.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ export async function cardRoutes(app: FastifyInstance): Promise<void> {
108108
if (!parsed.success) {return reply.status(400).send({ error: 'Validation failed', details: parsed.error.flatten() })}
109109
const updated = await cardService.updateCard(app, userId, id, parsed.data)
110110
if (!updated) {return reply.status(404).send({ error: 'Card not found' })}
111-
console.log(updated)
112111
return updated
113112
} catch (error) {
114113
if (hasErrorCode(error, 'OWNERSHIP')) {return reply.status(403).send({ error: 'One or more links do not belong to your account' })}

0 commit comments

Comments
 (0)