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