location maps

This commit is contained in:
CHIEFSOFT\ameye
2023-10-25 17:34:16 -04:00
parent 21e31da332
commit 0ce80a0d20
21 changed files with 360 additions and 8 deletions
@@ -0,0 +1,24 @@
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();
});
});