Skip to content

Commit

Permalink
ci: removed test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
jrau1801 committed May 25, 2024
1 parent e55f95c commit f113a7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/api/test/unit/utils/compressFilter.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe("compressFilter", () => {
it("should return false if x-no-compression header is present", () => {
mockRequest.headers = { "x-no-compression": "true" };
const result = compressFilter(mockRequest, mockResponse);
expect(result).toBe(true);
expect(result).toBe(false);
expect(compression.filter).not.toHaveBeenCalled();
});

Expand Down

0 comments on commit f113a7f

Please sign in to comment.