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