Skip to content

Commit

Permalink
fix more test configs
Browse files Browse the repository at this point in the history
  • Loading branch information
pgayvallet committed Oct 21, 2022
1 parent 74ecbdb commit 40fd9b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ configService.atPath.mockImplementation((path) => {
ssl: {
verificationMode: 'none',
},
compression: { enabled: true },
compression: { enabled: true, brotli: { enabled: false } },
xsrf: {
disableProtection: true,
allowlist: [],
Expand Down
2 changes: 1 addition & 1 deletion src/core/server/integration_tests/http/http_server.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('Http server', () => {
maxPayload: new ByteSizeValue(1024),
port: 10002,
ssl: { enabled: false },
compression: { enabled: true },
compression: { enabled: true, brotli: { enabled: false } },
requestId: {
allowFromAnyIp: true,
ipAllowlist: [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ describe('core lifecycle handlers', () => {
cors: {
enabled: false,
},
compression: { enabled: true },
compression: { enabled: true, brotli: { enabled: false } },
name: kibanaName,
securityResponseHeaders: {
// reflects default config
Expand Down

0 comments on commit 40fd9b6

Please sign in to comment.