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