Skip to content

Commit bc73683

Browse files
authored
Extend timeout on lite driver tests (#1256)
1 parent 82a0007 commit bc73683

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/neo4j-driver-lite/test/integration/driver.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ describe('neo4j-driver-lite', () => {
4444
expect(result.records.length).toEqual(1)
4545
expect(result.records[0].length).toEqual(1)
4646
result.records[0].forEach(val => expect(val).toEqual(int(2)))
47-
})
47+
}, 10000)
4848

4949
test('hasReachableServer success', async () => {
5050
await expect(neo4j.hasReachableServer(`${Config.scheme}://${Config.hostname}:${Config.boltPort}`)).resolves.toBe(true)

0 commit comments

Comments
 (0)