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