summaryrefslogtreecommitdiffstats
path: root/cds-ui/client-frankfurt/src/app/modules/feature-modules/packages/packages-dashboard/search-by-packages/search-by-packages.component.spec.ts
blob: 7e50c55cc8751c6f1452e5d956fdd5db1f7d6073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { PackagesSearchComponent } from './search-by-packages.component';

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

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

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

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