Skip to content

Commit 8006716

Browse files
committed
adding missing binding
1 parent 24cc79f commit 8006716

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

components/server/src/api/teams.spec.db.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import { Redis } from "ioredis";
2525
import { UserService } from "../user/user-service";
2626
import { Config } from "../config";
2727
import { OrganizationService } from "../orgs/organization-service";
28+
import { ProjectsService } from "../projects/projects-service";
2829

2930
const expect = chai.expect;
3031

@@ -47,6 +48,7 @@ export class APITeamsServiceSpec {
4748
this.container.bind(Config).toConstantValue({} as Config);
4849
this.container.bind(Redis).toConstantValue({} as Redis);
4950
this.container.bind(UserService).toConstantValue({} as UserService);
51+
this.container.bind(ProjectsService).toConstantValue({} as ProjectsService);
5052

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

0 commit comments

Comments
 (0)