Currently integration test is using the same database as production database.
Good practice would be to have separate ENVS:
test_db (yes another db instance for testing)
test_user
test_password
And make another for testing database class that inherits normal class and adds some extra testing related queries, like searching for relationship names that are used to connect nodes.
Currently integration test is using the same database as production database.
Good practice would be to have separate ENVS:
And make another for testing database class that inherits normal class and adds some extra testing related queries, like searching for relationship names that are used to connect nodes.