diff --git a/modules/ui/src/app/components/testing-complete/testing-complete.component.spec.ts b/modules/ui/src/app/components/testing-complete/testing-complete.component.spec.ts index 494b58823..087758dc3 100644 --- a/modules/ui/src/app/components/testing-complete/testing-complete.component.spec.ts +++ b/modules/ui/src/app/components/testing-complete/testing-complete.component.spec.ts @@ -65,7 +65,8 @@ describe('TestingCompleteComponent', () => { profiles: [], testrunStatus: MOCK_PROGRESS_DATA_COMPLIANT, isTestingComplete: true, - url: 'https://api.testrun.io/report.pdf', + report: 'https://api.testrun.io/report.pdf', + export: '', isPilot: false, }, autoFocus: 'first-tabbable', diff --git a/modules/ui/src/app/components/testing-complete/testing-complete.component.ts b/modules/ui/src/app/components/testing-complete/testing-complete.component.ts index ccdc8c0c9..e8d04d149 100644 --- a/modules/ui/src/app/components/testing-complete/testing-complete.component.ts +++ b/modules/ui/src/app/components/testing-complete/testing-complete.component.ts @@ -20,7 +20,6 @@ import { TestingType } from '../../model/device'; @Component({ selector: 'app-testing-complete', - imports: [], template: '', changeDetection: ChangeDetectionStrategy.OnPush, @@ -52,7 +51,8 @@ export class TestingCompleteComponent implements OnDestroy, OnInit { profiles: this.profiles, testrunStatus: this.data, isTestingComplete: true, - url: this.data?.report, + report: this.data?.report, + export: this.data?.export, isPilot: this.data?.device.test_pack === TestingType.Pilot, }, autoFocus: 'first-tabbable',