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

25 lines
703 B
TypeScript

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