Skip to content

Commit

Permalink
Remove debugging statement
Browse files Browse the repository at this point in the history
  • Loading branch information
ylavoie committed Mar 19, 2023
1 parent 719153c commit a8e97a2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions UI/tests/specs/openapi/API-invoices.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,8 @@ describe("Adding the new Invoice", () => {
);
} catch(e) {
console.log(e.response.data);
console.dir(e.response.data.errors,{ depth: null });
}
expect(await res.status).toEqual(StatusCodes.CREATED);
expect(res.status).toEqual(StatusCodes.CREATED);
expect(res.headers.location).toMatch('./1');
});
});
Expand Down

0 comments on commit a8e97a2

Please sign in to comment.