Files
doneit-web/src/app/modals/delegar/delegar.page.spec.ts
T

25 lines
668 B
TypeScript
Raw Normal View History

2021-04-30 12:57:54 +01:00
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { DelegarPage } from './delegar.page';
describe('DelegarPage', () => {
let component: DelegarPage;
let fixture: ComponentFixture<DelegarPage>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ DelegarPage ],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(DelegarPage);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});