Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
martmull committed Mar 1, 2024
1 parent 7e3919f commit b550fa0
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { getRepositoryToken } from '@nestjs/typeorm';

import { Workspace } from 'src/core/workspace/workspace.entity';
import { WorkspaceManagerService } from 'src/workspace/workspace-manager/workspace-manager.service';
import { UserService } from 'src/core/user/services/user.service';
import { BillingService } from 'src/core/billing/billing.service';
import { UserWorkspaceService } from 'src/core/user-workspace/user-workspace.service';

import { WorkspaceService } from './workspace.service';

Expand All @@ -23,7 +24,11 @@ describe('WorkspaceService', () => {
useValue: {},
},
{
provide: UserService,
provide: UserWorkspaceService,
useValue: {},
},
{
provide: BillingService,
useValue: {},
},
],
Expand Down

0 comments on commit b550fa0

Please sign in to comment.