We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a40ca72 commit a032816Copy full SHA for a032816
packages/neo4j-driver-lite/test/integration/config.ts
@@ -45,11 +45,11 @@ export default {
45
get testNonClusterSafe () {
46
return cluster ? test.skip.bind(test) : test
47
},
48
- get httpPort () {
49
- return neo4jContainer.getHttpPort(httpPort)
+ get httpPort (): string {
+ return neo4jContainer.getHttpPort(httpPort).toString()
50
51
- get boltPort () {
52
- return neo4jContainer.getBoltPort(boltPort)
+ get boltPort (): string {
+ return neo4jContainer.getBoltPort(boltPort).toString()
53
54
async startNeo4j () {
55
await neo4jContainer.start()
0 commit comments