mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 12:37:53 +00:00
25 lines
690 B
TypeScript
25 lines
690 B
TypeScript
|
|
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||
|
|
import { IonicModule } from '@ionic/angular';
|
||
|
|
|
||
|
|
import { DarParecerPage } from './dar-parecer.page';
|
||
|
|
|
||
|
|
describe('DarParecerPage', () => {
|
||
|
|
let component: DarParecerPage;
|
||
|
|
let fixture: ComponentFixture<DarParecerPage>;
|
||
|
|
|
||
|
|
beforeEach(waitForAsync(() => {
|
||
|
|
TestBed.configureTestingModule({
|
||
|
|
declarations: [ DarParecerPage ],
|
||
|
|
imports: [IonicModule.forRoot()]
|
||
|
|
}).compileComponents();
|
||
|
|
|
||
|
|
fixture = TestBed.createComponent(DarParecerPage);
|
||
|
|
component = fixture.componentInstance;
|
||
|
|
fixture.detectChanges();
|
||
|
|
}));
|
||
|
|
|
||
|
|
it('should create', () => {
|
||
|
|
expect(component).toBeTruthy();
|
||
|
|
});
|
||
|
|
});
|