All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
26 lines
640 B
TypeScript
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();
|
|
});
|
|
});
|