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 98e5607 commit c2d8bdcCopy full SHA for c2d8bdc
packages/neo4j-driver/test/driver.test.js
@@ -398,10 +398,14 @@ describe('#integration driver', () => {
398
)
399
const session = driver.session()
400
401
+ jasmine.objectContaining('')
402
+
403
await expectAsync(session.run('RETURN 1')).toBeRejectedWith(
404
jasmine.objectContaining({
405
code: neo4j.error.SERVICE_UNAVAILABLE,
- message: `Neo4jError: Server at ${sharedNeo4j.hostname}:7687 can't perform routing. Make sure you are connecting to a causal cluster.`
406
+ message: jasmine.stringMatching(
407
+ `Server at ${sharedNeo4j.hostname}:7687 can't perform routing. Make sure you are connecting to a causal cluster.`
408
+ )
409
})
410
411
0 commit comments