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