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 @@ -20,6 +20,7 @@ import { v4 as uuidv4 } from "uuid";
20
20
import { UserAuthentication } from "../user/user-authentication" ;
21
21
import { WorkspaceService } from "../workspace/workspace-service" ;
22
22
import { API } from "./server" ;
23
+ import { SessionHandler } from "../session-handler" ;
23
24
24
25
const expect = chai . expect ;
25
26
@@ -37,6 +38,7 @@ export class APITeamsServiceSpec {
37
38
38
39
this . container . bind ( WorkspaceService ) . toConstantValue ( { } as WorkspaceService ) ;
39
40
this . container . bind ( UserAuthentication ) . toConstantValue ( { } as UserAuthentication ) ;
41
+ this . container . bind ( SessionHandler ) . toConstantValue ( { } as SessionHandler ) ;
40
42
41
43
// Clean-up database
42
44
const typeorm = testContainer . get < TypeORM > ( TypeORM ) ;
You can’t perform that action at this time.
0 commit comments