FarmMapsLib/projects/common-map/src/lib/common-map.component.spec.ts

26 lines
650 B
TypeScript

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