Skip to content

Commit 2b27814

Browse files
authored
Merge pull request #321 from lutovich/1.5-fix-tls-tests
Fix TLS tests in Node
2 parents 25dc55b + 69afc7e commit 2b27814

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

test/internal/shared-neo4j.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,14 @@ const authToken = neo4j.auth.basic(username, password);
102102

103103
const additionalConfig = {
104104
// tell neo4j to listen for IPv6 connections, only supported by 3.1+
105-
'dbms.connectors.default_listen_address': '::'
105+
'dbms.connectors.default_listen_address': '::',
106+
107+
// HTTP server should keep listening on default address and create a self-signed certificate with host 'localhost'
108+
'dbms.connector.http.listen_address': 'localhost:7474'
106109
};
107110

108111
const neoCtrlVersionParam = '-e';
109-
const defaultNeo4jVersion = '3.2.5';
112+
const defaultNeo4jVersion = '3.2.9';
110113
const defaultNeoCtrlArgs = `${neoCtrlVersionParam} ${defaultNeo4jVersion}`;
111114

112115
function neo4jCertPath(dir) {

0 commit comments

Comments
 (0)