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