Skip to content

Commit be9c16d

Browse files
committed
Fix
1 parent bee9d27 commit be9c16d

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
@@ -27,6 +27,7 @@ import { Config } from "../config";
2727
import { OrganizationService } from "../orgs/organization-service";
2828
import { ProjectsService } from "../projects/projects-service";
2929
import { AuthProviderService } from "../auth/auth-provider-service";
30+
import { EnvVarService } from "../user/env-var-service";
3031

3132
const expect = chai.expect;
3233

@@ -51,6 +52,7 @@ export class APITeamsServiceSpec {
5152
this.container.bind(UserService).toConstantValue({} as UserService);
5253
this.container.bind(ProjectsService).toConstantValue({} as ProjectsService);
5354
this.container.bind(AuthProviderService).toConstantValue({} as AuthProviderService);
55+
this.container.bind(EnvVarService).toConstantValue({} as EnvVarService);
5456

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

0 commit comments

Comments
 (0)