NGO-DB/ndb-core

View on GitHub
src/app/core/basic-datatypes/boolean/edit-boolean/boolean-input/boolean-input.component.spec.ts

Summary

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

import { BooleanInputComponent } from "./boolean-input.component";

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

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

    fixture = TestBed.createComponent(BooleanInputComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

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