NGO-DB/ndb-core

View on GitHub
src/app/features/reporting/reporting/report-row/report-row.component.spec.ts

Summary

Maintainability
B
5 hrs
Test Coverage
import { ComponentFixture, TestBed } from "@angular/core/testing";

import { ReportRowComponent } from "./report-row.component";

describe("ReportRowComponent", () => {
  let component: ReportRowComponent;
  let fixture: ComponentFixture<ReportRowComponent>;

  beforeEach(async () => {
    await TestBed.configureTestingModule({
      imports: [ReportRowComponent],
    }).compileComponents();
  });

  beforeEach(() => {
    fixture = TestBed.createComponent(ReportRowComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it("should create", () => {
    expect(component).toBeTruthy();
  });
});