Skip to content

Commit 0d3b560

Browse files
update port
1 parent 8d7cefd commit 0d3b560

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ describe("integration test", function () {
2525
}]
2626
};
2727

28-
it("should have request type in correlation-context header if feature flags use feature filters", async () => {
28+
it("should have filter type in correlation-context header if feature flags use feature filters", async () => {
2929
// We are using self-signed certificate
3030
process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0";
3131

test/utils/integrationTestHelper.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import * as fs from "fs";
66
let server;
77

88
const domain = "localhost";
9-
const port = 443;
9+
const port = 8443;
1010

1111
function startMockServer(settings: ConfigurationSetting[]) {
1212
const attrs = [{ name: "commonName", value: domain }];
@@ -37,7 +37,7 @@ function closeMockServer() {
3737
server.close();
3838
}
3939

40-
const mockServerEndpoint = "https://localhost:443";
40+
const mockServerEndpoint = `https://localhost:${port}`;
4141

4242
export {
4343
startMockServer,

0 commit comments

Comments
 (0)