Ontica/Empiria.Land.Intranet

View on GitHub
src/app/views/recordable-subjects/parties/party-selector.component.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { PartySelectorComponent } from './party-selector.component';

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

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

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

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