service-check-disjunction.component.spec.ts 720 B

1234567891011121314151617181920212223
  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { ServiceCheckDisjunctionComponent } from './service-check-disjunction.component';
  3. describe('ServiceCheckDisjunctionComponent', () => {
  4. let component: ServiceCheckDisjunctionComponent;
  5. let fixture: ComponentFixture<ServiceCheckDisjunctionComponent>;
  6. beforeEach(async () => {
  7. await TestBed.configureTestingModule({
  8. declarations: [ ServiceCheckDisjunctionComponent ]
  9. })
  10. .compileComponents();
  11. fixture = TestBed.createComponent(ServiceCheckDisjunctionComponent);
  12. component = fixture.componentInstance;
  13. fixture.detectChanges();
  14. });
  15. it('should create', () => {
  16. expect(component).toBeTruthy();
  17. });
  18. });