Fixed the test cases,added sonar config
[portal.git] / portal-FE-os / src / testing / router-link-directive-stub.ts
1 import { Directive, Input, HostListener } from "@angular/core";
2
3 @Directive({
4     selector: '[routerLink]'
5   })
6   export class RouterLinkDirectiveStub {
7     @Input('routerLink') linkParams: any;
8     navigatedTo: any = null;
9   
10     @HostListener('click')
11     onClick() {
12       this.navigatedTo = this.linkParams;
13     }
14   }