|
@@ -0,0 +1,22 @@
|
|
|
|
+import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
|
|
+
|
|
|
|
+import { PageTestComponent } from './page-test.component';
|
|
|
|
+
|
|
|
|
+describe('PageTestComponent', () => {
|
|
|
|
+ let component: PageTestComponent;
|
|
|
|
+ let fixture: ComponentFixture<PageTestComponent>;
|
|
|
|
+
|
|
|
|
+ beforeEach(waitForAsync(() => {
|
|
|
|
+ TestBed.configureTestingModule({
|
|
|
|
+ imports: [PageTestComponent],
|
|
|
|
+ }).compileComponents();
|
|
|
|
+
|
|
|
|
+ fixture = TestBed.createComponent(PageTestComponent);
|
|
|
|
+ component = fixture.componentInstance;
|
|
|
|
+ fixture.detectChanges();
|
|
|
|
+ }));
|
|
|
|
+
|
|
|
|
+ it('should create', () => {
|
|
|
|
+ expect(component).toBeTruthy();
|
|
|
|
+ });
|
|
|
|
+});
|