Files
am-product-material/src/app/maps/maps.component.spec.ts
2019-03-19 23:08:27 -06:00

26 lines
614 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { MapsComponent } from './maps.component';
describe('MapsComponent', () => {
let component: MapsComponent;
let fixture: ComponentFixture<MapsComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ MapsComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(MapsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});