29 lines
806 B
TypeScript
29 lines
806 B
TypeScript
|
/* tslint:disable:no-unused-variable */
|
||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
import { By } from '@angular/platform-browser';
|
||
|
import { DebugElement } from '@angular/core';
|
||
|
|
||
|
import { UserListItemComponent } from './user-list-item.component';
|
||
|
|
||
|
describe('UserListItemComponent', () => {
|
||
|
let component: UserListItemComponent;
|
||
|
let fixture: ComponentFixture<UserListItemComponent>;
|
||
|
|
||
|
beforeEach(async(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
declarations: [ UserListItemComponent ]
|
||
|
})
|
||
|
.compileComponents();
|
||
|
}));
|
||
|
|
||
|
beforeEach(() => {
|
||
|
fixture = TestBed.createComponent(UserListItemComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|