taurus-tv/src/app/kanban/kanban-entry-item/kanban-entry-item.component.spec.ts
Dávid Danyi f7bb463bd4 * semantic ui added
* very basic kanban module implementation to show api operation
2017-08-02 18:50:50 +02:00

26 lines
697 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { KanbanEntryItemComponent } from './kanban-entry-item.component';
describe('KanbanEntryItemComponent', () => {
let component: KanbanEntryItemComponent;
let fixture: ComponentFixture<KanbanEntryItemComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ KanbanEntryItemComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(KanbanEntryItemComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});