Skip to content

Commit 628df93

Browse files
committed
Skip HTTP driver test in NodeJS
1 parent 50e8fac commit 628df93

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/internal/http-driver.test.js

+5
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,11 @@ describe('http driver', () => {
226226
});
227227

228228
it('should use default HTTP port', done => {
229+
if (testUtils.isServer()) {
230+
done();
231+
return;
232+
}
233+
229234
const driver = neo4j.driver('http://localhost', sharedNeo4j.authToken);
230235
const session = driver.session();
231236
session.run('RETURN 4242').then(result => {

0 commit comments

Comments
 (0)