summaryrefslogtreecommitdiffstats
path: root/portal-FE-os/src/testing
diff options
context:
space:
mode:
authorjegadeeshbabu3 <jegadeesh.babu@att.com>2020-02-28 17:42:20 +0530
committerJegadeesh Babu <jegadeesh.babu@att.com>2020-02-28 15:35:27 +0000
commit4c6f6a443cb2e6effa995e77d56689c1c2dab4ad (patch)
tree7a961f7c4e2c7de9cea8f2acff473c9f4b11182e /portal-FE-os/src/testing
parenta03dfa273ef6e196bf65acc54b9357d35eb0ed5e (diff)
Fixed the test cases,added sonar config
Fixed test cases and added sonar config details Issue-ID: PORTAL-837 Change-Id: Ie4aa104871cfbbd6c6e36500f5ef2e250bafb575 Signed-off-by: jz385p <jegadeesh.babu@att.com>
Diffstat (limited to 'portal-FE-os/src/testing')
-rw-r--r--portal-FE-os/src/testing/router-link-directive-stub.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/portal-FE-os/src/testing/router-link-directive-stub.ts b/portal-FE-os/src/testing/router-link-directive-stub.ts
new file mode 100644
index 00000000..73e75cbe
--- /dev/null
+++ b/portal-FE-os/src/testing/router-link-directive-stub.ts
@@ -0,0 +1,14 @@
+import { Directive, Input, HostListener } from "@angular/core";
+
+@Directive({
+ selector: '[routerLink]'
+ })
+ export class RouterLinkDirectiveStub {
+ @Input('routerLink') linkParams: any;
+ navigatedTo: any = null;
+
+ @HostListener('click')
+ onClick() {
+ this.navigatedTo = this.linkParams;
+ }
+ } \ No newline at end of file