/* * this module fixes an error when building for production. * Test components/directives need to belong to a module, * as excluding them in tsconfig.json doesn't seem to work on all platforms. */ import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { RouterLinkStubDirective, RouterOutletStubComponent } from './router-stubs' @NgModule({ imports: [ CommonModule, ], declarations: [ RouterLinkStubDirective, RouterOutletStubComponent ] }) export class TestModule { }