You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// It is possible to execute read transactions that will benefit from automatic
132
132
// retries on both single instance ('bolt' URI scheme) and Causal Cluster
@@ -224,10 +224,19 @@ See files under `examples/` on how to use.
224
224
225
225
## Testing
226
226
227
+
Tests **require** latest [Boltkit](https://github.com/neo4j-contrib/boltkit) to be installed in the system. It is needed to start, stop and configure local test database. Boltkit can be installed with the following command:
228
+
229
+
pip install --upgrade boltkit
230
+
231
+
To run tests against "default" Neo4j version:
232
+
227
233
./runTests.sh
234
+
235
+
To run tests against specified Neo4j version (latest enterprise 3.2 snapshot in this case):
236
+
237
+
./runTests.sh '-e 3.2'
228
238
229
-
This runs the test suite against a fresh download of Neo4j.
230
-
Or `npm test` if you already have a running version of a compatible Neo4j server.
239
+
Simple `npm test` can also be used if you already have a running version of a compatible Neo4j server.
231
240
232
241
For development, you can have the build tool rerun the tests each time you change
0 commit comments