fix despacho from a task

This commit is contained in:
tiago.kayaya
2021-04-29 13:58:52 +01:00
parent 1f8875a5d0
commit b7337ab9dd
28 changed files with 1615 additions and 30 deletions
@@ -0,0 +1,24 @@
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { CreateProcessPage } from './create-process.page';
describe('CreateProcessPage', () => {
let component: CreateProcessPage;
let fixture: ComponentFixture<CreateProcessPage>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ CreateProcessPage ],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(CreateProcessPage);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});