NGO-DB/ndb-core

View on GitHub
src/app/core/common-components/help-button/help-button.component.spec.ts

Summary

Maintainability
B
4 hrs
Test Coverage
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();
  });
});