File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import sharedNeo4j from '../internal/shared-neo4j';
22
22
import FakeConnection from '../internal/fake-connection' ;
23
23
import lolex from 'lolex' ;
24
24
import { DEFAULT_ACQUISITION_TIMEOUT , DEFAULT_MAX_SIZE } from '../../src/v1/internal/pool-config' ;
25
- import { ServerVersion , VERSION_3_1_0 } from '../../src/v1/internal/server-version' ;
25
+ import { ServerVersion , VERSION_3_1_0 , VERSION_3_5_0 } from '../../src/v1/internal/server-version' ;
26
26
import testUtils from '../internal/test-utils' ;
27
27
28
28
describe ( 'driver' , ( ) => {
@@ -201,6 +201,10 @@ describe('driver', () => {
201
201
} ) ;
202
202
203
203
it ( 'should fail nicely when connecting with routing to standalone server' , done => {
204
+ if ( serverVersion . compareTo ( VERSION_3_5_0 ) > 0 ) {
205
+ done ( ) ;
206
+ }
207
+
204
208
// Given
205
209
driver = neo4j . driver ( "bolt+routing://localhost" , sharedNeo4j . authToken ) ;
206
210
You can’t perform that action at this time.
0 commit comments