Skip to content

Commit

Permalink
Fix multidb support on 5378
Browse files Browse the repository at this point in the history
  • Loading branch information
angrykoala committed Jul 26, 2024
1 parent db90a64 commit 304073e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/graphql/tests/integration/issues/5378.int.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ describe("https://github.com/neo4j/graphql/issues/5378", () => {
});

beforeEach(async () => {
if (MULTIDB_SUPPORT) {
if (!MULTIDB_SUPPORT) {
return;
}
Space = testHelper.createUniqueType("Space");
Expand All @@ -73,7 +73,9 @@ describe("https://github.com/neo4j/graphql/issues/5378", () => {
});

afterEach(async () => {
await testHelper.close();
if (MULTIDB_SUPPORT) {
await testHelper.close();
}
});

afterAll(async () => {
Expand Down

0 comments on commit 304073e

Please # to comment.