Aam-Digital/ndb-core

View on GitHub
src/app/features/location/view-location/view-location.component.spec.ts

Summary

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

import { ViewLocationComponent } from "./view-location.component";

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

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

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

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