This commit is contained in:
tiago.kayaya
2021-08-05 14:10:18 +01:00
parent f4c6fa91fe
commit 659a61577d
12 changed files with 580 additions and 17 deletions
@@ -0,0 +1,24 @@
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();
});
});