bugfix(avvikelserapport): fixed test error duo to missing module in spec imports TV-635

Squashed commit of the following:

commit e0b73541f9e68e839c650396eb79f8555ceb60be
Author: fueno <nicolas.fuentes-maturana@arbetsformedlingen.se>
Date:   Mon Sep 20 15:51:05 2021 +0200

    TV-635 fixed test error duo to missing module in spec file
This commit is contained in:
Nicolas Fuentes Maturana
2021-09-20 15:52:57 +02:00
parent 0e3b86c4f5
commit e120e504aa

View File

@@ -1,3 +1,4 @@
import { DigiNgFormDatepickerModule } from '@af/digi-ng/_form/form-datepicker';
import { DigiNgFormRadiobuttonGroupModule } from '@af/digi-ng/_form/form-radiobutton-group';
import { HttpClientTestingModule } from '@angular/common/http/testing';
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
@@ -20,7 +21,8 @@ describe('DeltagareAvvikelseComponent', () => {
RouterTestingModule,
HttpClientTestingModule,
ReactiveFormsModule,
DigiNgFormRadiobuttonGroupModule
DigiNgFormRadiobuttonGroupModule,
DigiNgFormDatepickerModule
]
}).compileComponents();
});