| 123456789101112131415161718192021222324 | 
							- import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
 
- import { IonicModule } from '@ionic/angular';
 
- import { LoginPageComponent } from './login-page.component';
 
- describe('LoginPageComponent', () => {
 
-   let component: LoginPageComponent;
 
-   let fixture: ComponentFixture<LoginPageComponent>;
 
-   beforeEach(waitForAsync(() => {
 
-     TestBed.configureTestingModule({
 
-       declarations: [ LoginPageComponent ],
 
-       imports: [IonicModule.forRoot()]
 
-     }).compileComponents();
 
-     fixture = TestBed.createComponent(LoginPageComponent);
 
-     component = fixture.componentInstance;
 
-     fixture.detectChanges();
 
-   }));
 
-   it('should create', () => {
 
-     expect(component).toBeTruthy();
 
-   });
 
- });
 
 
  |