mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
25 lines
697 B
TypeScript
25 lines
697 B
TypeScript
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
|
import { IonicModule } from '@ionic/angular';
|
||
|
|
|
||
|
|
import { OrganicEntityPage } from './organic-entity.page';
|
||
|
|
|
||
|
|
describe('OrganicEntityPage', () => {
|
||
|
|
let component: OrganicEntityPage;
|
||
|
|
let fixture: ComponentFixture<OrganicEntityPage>;
|
||
|
|
|
||
|
|
beforeEach(async(() => {
|
||
|
|
TestBed.configureTestingModule({
|
||
|
|
declarations: [ OrganicEntityPage ],
|
||
|
|
imports: [IonicModule.forRoot()]
|
||
|
|
}).compileComponents();
|
||
|
|
|
||
|
|
fixture = TestBed.createComponent(OrganicEntityPage);
|
||
|
|
component = fixture.componentInstance;
|
||
|
|
fixture.detectChanges();
|
||
|
|
}));
|
||
|
|
|
||
|
|
it('should create', () => {
|
||
|
|
expect(component).toBeTruthy();
|
||
|
|
});
|
||
|
|
});
|