We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d782a3e commit 252dc78Copy full SHA for 252dc78
test/unit/core/api/extendExpressResponse.test.ts
@@ -89,7 +89,7 @@ describe('extendExpressResponse', () => {
89
test('Should create to correct response format', () => {
90
extendExpressResponse(req, res, next);
91
res.destroyed();
92
- expect(res.status).toHaveBeenCalledWith(204);
+ expect(res.status).toHaveBeenCalledWith(200);
93
expect(res.json).toHaveBeenCalledWith({
94
success: true,
95
data: null
0 commit comments