github.com/in4it/ecs-deploy@v0.0.42-0.20240508120354-ed77ff16df25/webapp/src/app/service-detail/service-detail.component.spec.ts (about)

     1  import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
     2  
     3  import { ServiceDetailsComponent } from './service-details.component';
     4  
     5  describe('ServiceDetailsComponent', () => {
     6    let component: ServiceDetailsComponent;
     7    let fixture: ComponentFixture<ServiceDetailsComponent>;
     8  
     9    beforeEach(waitForAsync(() => {
    10      TestBed.configureTestingModule({
    11        declarations: [ ServiceDetailsComponent ]
    12      })
    13      .compileComponents();
    14    }));
    15  
    16    beforeEach(() => {
    17      fixture = TestBed.createComponent(ServiceDetailsComponent);
    18      component = fixture.componentInstance;
    19      fixture.detectChanges();
    20    });
    21  
    22    it('should create', () => {
    23      expect(component).toBeTruthy();
    24    });
    25  });