25 lines
697 B
TypeScript
25 lines
697 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { PerfilUsuarioPage } from './perfil-usuario.page';
|
|
|
|
describe('PerfilUsuarioPage', () => {
|
|
let component: PerfilUsuarioPage;
|
|
let fixture: ComponentFixture<PerfilUsuarioPage>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ PerfilUsuarioPage ],
|
|
imports: [IonicModule.forRoot()]
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(PerfilUsuarioPage);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
}));
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|