Skip to content
This repository has been archived by the owner on Nov 2, 2024. It is now read-only.

Commit

Permalink
✅ fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverlevay committed Aug 22, 2023
1 parent 71add97 commit 9291cc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 15 deletions.

This file was deleted.

4 changes: 2 additions & 2 deletions backend/services/core/tests/products/products.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ describe('Products API Graphql', () => {
productId: data.webshop.createProduct.id,
name: 'Updated Coffee',
description: 'Updated description',
price: 10.99,
price: 1337,
categoryId: categories[0].id,
};
const { data: updated, errors } = await client.mutate({
Expand All @@ -304,7 +304,7 @@ describe('Products API Graphql', () => {
),
name: 'Updated Coffee',
description: 'Updated description',
price: 10.99,
price: 1337,
});
});

Expand Down

0 comments on commit 9291cc8

Please sign in to comment.