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