Files
FarmMapsLib/projects/common-map/src/fm-map/components/feature-thumbnail/feature-thumbnail.component.spec.ts
Willem Dantuma c9fac05aa6
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
Refactor to fm-map-feature-thumbnail
2021-03-20 12:00:04 +01:00

26 lines
703 B
TypeScript

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