AW-471 Farmmaps library (initial commit).

This commit is contained in:
2019-06-26 15:18:08 +02:00
parent 1815b82565
commit 988040e80d
25 changed files with 1184 additions and 63 deletions

View File

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