File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
components/server/src/api Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ import { Config } from "../config";
27
27
import { OrganizationService } from "../orgs/organization-service" ;
28
28
import { ProjectsService } from "../projects/projects-service" ;
29
29
import { AuthProviderService } from "../auth/auth-provider-service" ;
30
+ import { EnvVarService } from "../user/env-var-service" ;
30
31
31
32
const expect = chai . expect ;
32
33
@@ -51,6 +52,7 @@ export class APITeamsServiceSpec {
51
52
this . container . bind ( UserService ) . toConstantValue ( { } as UserService ) ;
52
53
this . container . bind ( ProjectsService ) . toConstantValue ( { } as ProjectsService ) ;
53
54
this . container . bind ( AuthProviderService ) . toConstantValue ( { } as AuthProviderService ) ;
55
+ this . container . bind ( EnvVarService ) . toConstantValue ( { } as EnvVarService ) ;
54
56
55
57
// Clean-up database
56
58
const typeorm = testContainer . get < TypeORM > ( TypeORM ) ;
You can’t perform that action at this time.
0 commit comments