Files
doneit-web/src/app/shared/gabinete-digital/all-processes/all-processes.page.spec.ts
T
tiago.kayaya 659a61577d save
2021-08-05 14:10:18 +01:00

25 lines
704 B
TypeScript

import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { AllProcessesPage } from './all-processes.page';
describe('AllProcessesPage', () => {
let component: AllProcessesPage;
let fixture: ComponentFixture<AllProcessesPage>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ AllProcessesPage ],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(AllProcessesPage);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});