Skip to content

Commit

Permalink
Add unique type to interfaces top level tests
Browse files Browse the repository at this point in the history
  • Loading branch information
angrykoala committed Mar 5, 2024
1 parent 33cac47 commit 0262c7d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ import { UniqueType } from "../../utils/graphql-types";
import Neo4jHelper from "../neo4j";

describe("Interfaces top level connections", () => {
const Movie = new UniqueType("Movie");
const Series = new UniqueType("Series");
const Season = new UniqueType("Season");
const ProgrammeItem = new UniqueType("ProgrammeItem");
const Actor = new UniqueType("Actor");

let schema: GraphQLSchema;
let driver: Driver;
Expand Down Expand Up @@ -90,7 +90,7 @@ describe("Interfaces top level connections", () => {
});

afterEach(async () => {
await cleanNodes(driver, [Series, Season, ProgrammeItem]);
await cleanNodes(driver, [Series, Movie, Actor]);
});

afterAll(async () => {
Expand Down

0 comments on commit 0262c7d

Please sign in to comment.