26 lines
697 B
TypeScript
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();
|
||
|
|
});
|
||
|
|
});
|