summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-os/ngappsrc/src/app/welcome-module/welcome-module.component.spec.ts
diff options
context:
space:
mode:
authorSudarshan Kumar <sudarshan.kumar@att.com>2020-07-20 13:42:49 +0530
committerSudarshan Kumar <sudarshan.kumar@att.com>2020-07-20 23:54:00 +0530
commit05af2c42b57d71d375ba2e50fd10a3fd682ea226 (patch)
tree54b1d6ec489f7a5d037a1b52b504ec3804ed8260 /ecomp-sdk/epsdk-app-os/ngappsrc/src/app/welcome-module/welcome-module.component.spec.ts
parent5b557b51c6e41315ad48727340df8d3247154330 (diff)
Integrated UI lazy loading and Raptor update
Integrated UI lazy loading and Raptor update Issue-ID: PORTAL-902 Change-Id: I0cf9f22a57c2be4e5b83981bdf0984768a5f44a6 Signed-off-by: Sudarshan Kumar <sudarshan.kumar@att.com>
Diffstat (limited to 'ecomp-sdk/epsdk-app-os/ngappsrc/src/app/welcome-module/welcome-module.component.spec.ts')
-rw-r--r--ecomp-sdk/epsdk-app-os/ngappsrc/src/app/welcome-module/welcome-module.component.spec.ts27
1 files changed, 27 insertions, 0 deletions
diff --git a/ecomp-sdk/epsdk-app-os/ngappsrc/src/app/welcome-module/welcome-module.component.spec.ts b/ecomp-sdk/epsdk-app-os/ngappsrc/src/app/welcome-module/welcome-module.component.spec.ts
new file mode 100644
index 00000000..e18bc16a
--- /dev/null
+++ b/ecomp-sdk/epsdk-app-os/ngappsrc/src/app/welcome-module/welcome-module.component.spec.ts
@@ -0,0 +1,27 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { WelcomeModuleComponent } from './welcome-module.component';
+import { RouterTestingModule } from '@angular/router/testing';
+
+describe('WelcomeModuleComponent', () => {
+ let component: WelcomeModuleComponent;
+ let fixture: ComponentFixture<WelcomeModuleComponent>;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ WelcomeModuleComponent ],
+ imports:[RouterTestingModule]
+ })
+ .compileComponents();
+ }));
+
+ // beforeEach(() => {
+ // fixture = TestBed.createComponent(WelcomeModuleComponent);
+ // component = fixture.componentInstance;
+ // fixture.detectChanges();
+ // });
+
+ // it('should create', () => {
+ // expect(component).toBeTruthy();
+ // });
+});