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