NGO-DB/ndb-core

View on GitHub
src/app/child-dev-project/attendance/add-day-attendance/roll-call/roll-call-tab/roll-call-tab.component.spec.ts

Summary

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

import { RollCallTabComponent } from "./roll-call-tab.component";
import { NoopAnimationsModule } from "@angular/platform-browser/animations";

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

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

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

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