summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.spec.ts
blob: 957be88b619d212a68a2403bdba5001d0931d6a8 (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
26
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { EditDrillDownLinkComponent } from './edit-drill-down-link.component';
import { FormsModule } from '@angular/forms';
import { HttpClientTestingModule } from '@angular/common/http/testing';

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

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [ EditDrillDownLinkComponent ],
      imports:[
        FormsModule,
        HttpClientTestingModule
      ]
    })
    .compileComponents();
  }));

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