import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { OnguardComponentsComponent } from './onguard-components.component'; describe('OnguardComponentsComponent', () => { let component: OnguardComponentsComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ OnguardComponentsComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(OnguardComponentsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });