Skip to content

Commit

Permalink
fix testing
Browse files Browse the repository at this point in the history
  • Loading branch information
leomendoza123 committed Jul 6, 2023
1 parent 8b6ae7a commit 89937e3
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { UserInfoService } from 'src/app/core/user-info/user-info.service'
import { of } from 'rxjs'
import { WINDOW_PROVIDERS } from 'src/app/cdk/window'
import { DeveloperToolsComponent } from './developer-tools.component'
import { PlatformInfoService } from 'src/app/cdk/platform-info'

describe('DeveloperToolsComponent', () => {
let component: DeveloperToolsComponent
Expand All @@ -19,6 +20,10 @@ describe('DeveloperToolsComponent', () => {
declarations: [DeveloperToolsComponent],
providers: [
WINDOW_PROVIDERS,
{
provide: PlatformInfoService,
useValue: { get: () => of({}) },
},
{
provide: FormBuilder,
useValue: {},
Expand Down

0 comments on commit 89937e3

Please sign in to comment.