home-addres
Version:
25 lines (19 loc) • 725 B
text/typescript
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { HomeAddresComponent } from './home-addres.component';
describe('HomeAddresComponent', () => {
let component: HomeAddresComponent;
let fixture: ComponentFixture<HomeAddresComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ HomeAddresComponent ],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(HomeAddresComponent);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});