FarmMapsLib/projects/common/src/fm/components/gradient/gradient.component.spec.ts
Willem Dantuma da2492e017
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
Add fm-gradient-select
2020-10-06 08:22:10 +02:00

26 lines
640 B
TypeScript

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