src/app/core/common-components/help-button/help-button.component.spec.ts
import { ComponentFixture, TestBed } from "@angular/core/testing";
import { HelpButtonComponent } from "./help-button.component";
describe("HelpButtonComponent", () => {
let component: HelpButtonComponent;
let fixture: ComponentFixture<HelpButtonComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [HelpButtonComponent],
}).compileComponents();
fixture = TestBed.createComponent(HelpButtonComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it("should create", () => {
expect(component).toBeTruthy();
});
});