src/app/views/search-services/tract-index-explorer/tract-index-explorer.component.spec.ts
/**
* @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 { TractIndexExplorerComponent } from './tract-index-explorer.component';
describe('TractIndexExplorerComponent', () => {
let component: TractIndexExplorerComponent;
let fixture: ComponentFixture<TractIndexExplorerComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ TractIndexExplorerComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(TractIndexExplorerComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});