27 lines
806 B
TypeScript
27 lines
806 B
TypeScript
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
import { By } from '@angular/platform-browser';
|
||
|
import { DebugElement } from '@angular/core';
|
||
|
|
||
|
import { ProfileListItemComponent } from './profile-list-item.component';
|
||
|
|
||
|
describe('ucap::ucap::organization::ProfileListItemComponent', () => {
|
||
|
let component: ProfileListItemComponent;
|
||
|
let fixture: ComponentFixture<ProfileListItemComponent>;
|
||
|
|
||
|
beforeEach(async(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
declarations: [ProfileListItemComponent]
|
||
|
}).compileComponents();
|
||
|
}));
|
||
|
|
||
|
beforeEach(() => {
|
||
|
fixture = TestBed.createComponent(ProfileListItemComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|