| 123456789101112131415161718192021222324 |
- import { CommonModule } from '@angular/common';
- import { NgModule, Provider } from '@angular/core';
- import { ClarityModule } from '@clr/angular';
- import { DataService, FormFieldComponent, FormFieldControlDirective } from '../lib/core/src/public_api';
- import { MockTranslatePipe } from './translate.pipe.mock';
- const DECLARATIONS = [MockTranslatePipe, FormFieldComponent, FormFieldControlDirective];
- const PROVIDERS: Provider[] = [{ provide: DataService, useValue: {} }];
- /**
- * This module is for use in unit testing, and provides common directives and providers
- * that are used across most component, reducing the boilerplate needed to declare these
- * in each individual test.
- */
- @NgModule({
- imports: [CommonModule, ClarityModule],
- exports: [...DECLARATIONS, ClarityModule],
- declarations: DECLARATIONS,
- providers: PROVIDERS,
- })
- export class TestingCommonModule {}
|