Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
mustard-mh committed Nov 21, 2023
1 parent 8740374 commit 53bc66e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions components/server/src/api/teams.spec.db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ import { Config } from "../config";
import { OrganizationService } from "../orgs/organization-service";
import { ProjectsService } from "../projects/projects-service";
import { AuthProviderService } from "../auth/auth-provider-service";
import { ContextService } from "../workspace/context-service";
import { ContextParser } from "../workspace/context-parser-service";

const expect = chai.expect;

Expand All @@ -51,6 +53,8 @@ export class APITeamsServiceSpec {
this.container.bind(UserService).toConstantValue({} as UserService);
this.container.bind(ProjectsService).toConstantValue({} as ProjectsService);
this.container.bind(AuthProviderService).toConstantValue({} as AuthProviderService);
this.container.bind(ContextService).toConstantValue({} as ContextService);
this.container.bind(ContextParser).toConstantValue({} as ContextParser);

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

0 comments on commit 53bc66e

Please sign in to comment.