Skip to content

Commit

Permalink
9107-record-summaries
Browse files Browse the repository at this point in the history
  • Loading branch information
Leonardo Mendoza Fernadez authored and Leonardo Mendoza Fernadez committed Mar 18, 2024
1 parent 9e14d5f commit a43aaec
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ComponentFixture, TestBed } from '@angular/core/testing'

import { TrustedSummaryComponent } from './trusted-summary.component'
import { TrustedSummaryPageComponent } from './trusted-summary.component'
import { TrustedSummaryService } from 'src/app/core/trusted-summary/trusted-summary.service'
import { ErrorHandlerService } from 'src/app/core/error-handler/error-handler.service'
import { HttpClientTestingModule } from '@angular/common/http/testing'
Expand All @@ -10,12 +10,12 @@ import { ZendeskService } from 'src/app/core/zendesk/zendesk.service'
import { WINDOW } from 'src/app/cdk/window'

describe('TrustedSummaryComponent', () => {
let component: TrustedSummaryComponent
let fixture: ComponentFixture<TrustedSummaryComponent>
let component: TrustedSummaryPageComponent
let fixture: ComponentFixture<TrustedSummaryPageComponent>

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [TrustedSummaryComponent],
declarations: [TrustedSummaryPageComponent],
providers: [
{ provide: ErrorHandlerService, userValue: {} },
{
Expand All @@ -32,7 +32,7 @@ describe('TrustedSummaryComponent', () => {
imports: [HttpClientTestingModule],
}).compileComponents()

fixture = TestBed.createComponent(TrustedSummaryComponent)
fixture = TestBed.createComponent(TrustedSummaryPageComponent)
component = fixture.componentInstance
fixture.detectChanges()
})
Expand Down

0 comments on commit a43aaec

Please sign in to comment.