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 { BearerAuth } from "../auth/bearer-authenticator" ;
30
31
31
32
const expect = chai . expect ;
32
33
@@ -45,6 +46,7 @@ export class APITeamsServiceSpec {
45
46
this . container . bind ( WorkspaceService ) . toConstantValue ( { } as WorkspaceService ) ;
46
47
this . container . bind ( OrganizationService ) . toConstantValue ( { } as OrganizationService ) ;
47
48
this . container . bind ( UserAuthentication ) . toConstantValue ( { } as UserAuthentication ) ;
49
+ this . container . bind ( BearerAuth ) . toConstantValue ( { } as BearerAuth ) ;
48
50
this . container . bind ( SessionHandler ) . toConstantValue ( { } as SessionHandler ) ;
49
51
this . container . bind ( Config ) . toConstantValue ( { } as Config ) ;
50
52
this . container . bind ( Redis ) . toConstantValue ( { } as Redis ) ;
You can’t perform that action at this time.
0 commit comments