Files
WrenchBoardIonic2023/src/app/components/tracking/tracking.component.spec.ts
T
CHIEFSOFT\ameye 0ce80a0d20 location maps
2023-10-25 17:34:16 -04:00

25 lines
710 B
TypeScript

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