Files
WrenchBoardIonic2023/src/app/pages/jobmanager/jobmanager.page.spec.ts
T
CHIEFSOFT\ameye 6f9eb0e25e Job owner pages
2023-08-06 07:38:41 -04:00

25 lines
689 B
TypeScript

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