Skip to content

Commit

Permalink
adding missing binding
Browse files Browse the repository at this point in the history
  • Loading branch information
selfcontained committed Nov 7, 2023
1 parent 1c4f56f commit 82c6986
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions components/server/src/api/teams.spec.db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import { Redis } from "ioredis";
import { UserService } from "../user/user-service";
import { Config } from "../config";
import { OrganizationService } from "../orgs/organization-service";
import { ProjectsService } from "../projects/projects-service";

const expect = chai.expect;

Expand All @@ -47,6 +48,7 @@ export class APITeamsServiceSpec {
this.container.bind(Config).toConstantValue({} as Config);
this.container.bind(Redis).toConstantValue({} as Redis);
this.container.bind(UserService).toConstantValue({} as UserService);
this.container.bind(ProjectsService).toConstantValue({} as ProjectsService);

// Clean-up database
const typeorm = testContainer.get<TypeORM>(TypeORM);
Expand Down

0 comments on commit 82c6986

Please sign in to comment.