summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/portalsdk-tag-lib.component.spec.ts
blob: b6440f71f0fa5c2e703ac1a48e4c2e3fc177e4d8 (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 { PortalsdkTagLibComponent } from './portalsdk-tag-lib.component';

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

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

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

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