Ontica/Empiria.Land.Intranet

View on GitHub
src/app/views/land-controls/tract-index/tract-index-entries-table.component.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * @license
 * Copyright (c) La Vía Óntica SC, Ontica LLC and contributors. All rights reserved.
 *
 * See LICENSE.txt in the project root for complete license information.
 */

import { ComponentFixture, TestBed } from '@angular/core/testing';

import { TractIndexEntriesTableComponent } from './tract-index-entries-table.component';

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

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

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

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