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