Ontica/Empiria.Land.Intranet

View on GitHub
src/app/workspaces/historic-registration/book-entry-main-page/book-entry-main-page.component.spec.ts

Summary

Maintainability
B
6 hrs
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, waitForAsync } from '@angular/core/testing';

import { BookEntryMainPageComponent } from './book-entry-main-page.component';


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

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

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

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