Get rid of inconsistency with neode setup
2 unresolved threads
2 unresolved threads
Created by: Tirokk
Authored by roschaefer Merged

Pullrequest

Implement getDriver() and getNeode() the same way
I want to introduce `neode` and `neo4j-graphql-js` to my students and
saw this.
Fix cypress tests
Since `dotenv` in the backend now loads configuration from a file
relative to the current file, we don't have to duplicate the neo4j
configuration settings here.
Merge request reports
Activity
Filter activity
36 36 context: () => { 37 37 return { 38 38 user: authenticatedUser, 39 neode: instance, 39 neode, Created by: Tirokk
Authored by mattwr18
Outdated (history rewrite) - original diff
@@ -36,7 +36,7 @@ beforeAll(() => { context: () => { return { user: authenticatedUser, - neode: instance, + neode: neode,
can't we use ES6 syntax here?
20 20 return { 21 21 user: authenticatedUser, 22 22 driver, 23 neode: instance, 23 neode, Created by: Tirokk
Authored by mattwr18
Outdated (history rewrite) - original diff
@@ -20,7 +20,7 @@ beforeEach(() => { return { user: authenticatedUser, driver, - neode: instance, + neode: neode,
same as
Please register or sign in to reply