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