fix(reports): Fixed issues with tests making reporting forms not working.

This commit is contained in:
Erik Tiekstra
2021-11-15 12:31:50 +01:00
parent a7c2d32a1d
commit e203f19b24
12 changed files with 36 additions and 14 deletions

View File

@@ -1,10 +1,11 @@
import { CommonModule } from '@angular/common';
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
import { ReactiveFormsModule } from '@angular/forms';
import { RadiobuttonGroupComponent } from './radiobutton-group.component';
@NgModule({
schemas: [CUSTOM_ELEMENTS_SCHEMA],
imports: [CommonModule],
imports: [CommonModule, ReactiveFormsModule],
declarations: [RadiobuttonGroupComponent],
exports: [RadiobuttonGroupComponent],
})