Skip to content

Commit 1999653

Browse files
committed
fix: fixes failing CI build as cert is not configured
Default value should be false, and set to true when cert path is configured
1 parent 203d438 commit 1999653

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

proxy.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
"csrfProtection": true,
137137
"plugins": [],
138138
"tls": {
139-
"enabled": true,
139+
"enabled": false,
140140
"key": "certs/key.pem",
141141
"cert": "certs/cert.pem"
142142
}

test/chain.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const mockLoader = {
1515
],
1616
};
1717

18-
const initMockPushProcessors = () => {
18+
const initMockPushProcessors = (sinon) => {
1919
const mockPushProcessors = {
2020
parsePush: sinon.stub(),
2121
audit: sinon.stub(),

0 commit comments

Comments
 (0)