finally fixed all tests.

This commit is contained in:
Jason Kulatunga 2023-01-16 18:01:42 -08:00
parent f818428dfd
commit 4d15affff7
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
import { ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed } from '@angular/core/testing';
import { FhirResourceComponent } from './fhir-resource.component'; import { FhirResourceComponent } from './fhir-resource.component';
import {FhirResourceOutletDirective} from './fhir-resource-outlet.directive';
describe('FhirResourceComponent', () => { describe('FhirResourceComponent', () => {
let component: FhirResourceComponent; let component: FhirResourceComponent;
@ -8,7 +9,7 @@ describe('FhirResourceComponent', () => {
beforeEach(async () => { beforeEach(async () => {
await TestBed.configureTestingModule({ await TestBed.configureTestingModule({
declarations: [ FhirResourceComponent ] declarations: [ FhirResourceComponent, FhirResourceOutletDirective ],
}) })
.compileComponents(); .compileComponents();