All files / src/app/shared/formly/dev/testing formly-testing-components.module.ts

100% Statements 10/10
100% Branches 0/0
100% Functions 0/0
100% Lines 8/8

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2237x 37x 37x 37x   37x 37x 37x                         37x  
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { ReactiveFormsModule } from '@angular/forms';
import { FormlyForm, FormlyModule } from '@ngx-formly/core';
 
import { FormlyTestingContainerComponent } from './formly-testing-container/formly-testing-container.component';
import { FormlyTestingExampleComponent } from './formly-testing-example/formly-testing-example.component';
import { FormlyTestingFieldgroupExampleComponent } from './formly-testing-fieldgroup-example/formly-testing-fieldgroup-example.component';
 
@NgModule({
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
  imports: [CommonModule, FormlyModule.forRoot({ formlyForm: FormlyForm } as any), ReactiveFormsModule],
  declarations: [
    FormlyTestingContainerComponent,
    FormlyTestingExampleComponent,
    FormlyTestingFieldgroupExampleComponent,
  ],
  exports: [FormlyModule, FormlyTestingContainerComponent, FormlyTestingExampleComponent],
})
// eslint-disable-next-line ish-custom-rules/project-structure
export class FormlyTestingComponentsModule {}