blob: d9ef346b5ac8d96680dcb4857d182bd1e9bdc253 [file] [log] [blame]
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { HealthChecksComponent } from './health-checks.component';
describe('HealthChecksComponent', () => {
let component: HealthChecksComponent;
let fixture: ComponentFixture<HealthChecksComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ HealthChecksComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(HealthChecksComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});