Skip to content

Commit

Permalink
Update main.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
alejouribesanchez committed Jan 2, 2024
1 parent c006b0c commit 71d948c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ describe('Processing documents', () => {
expect(response.total).toBe(329.74);
expect(response.tax).toBe(23.47);
expect(response.subtotal).toBe(329.74);
expect(response.category).toBe('Utilities');
expect(response.category).toBeDefined();
expect(response.document_type).toBe("invoice");
expect(response.line_items[0].total).toBe(116.32);
expect(response.line_items[1].total).toBe(10);
Expand Down

0 comments on commit 71d948c

Please sign in to comment.