OwenKelvin/Angular-School-Management-System

View on GitHub
src/app/pages/admissions/students/view-student/identification-details/identification-details.component.spec.ts

Summary

Maintainability
B
6 hrs
Test Coverage
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { IdentificationDetailsComponent } from './identification-details.component';

describe('IdentificationDetailsComponent', () => {
  let component: IdentificationDetailsComponent;
  let fixture: ComponentFixture<IdentificationDetailsComponent>;

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [ IdentificationDetailsComponent ]
    })
    .compileComponents();
  }));

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

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