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