angular-wrapper-kendo-ui-app
Version:
A sample application to use and test the TreeList component defined in the *angular-wrapper-kendo-ui* library.
26 lines (20 loc) • 668 B
text/typescript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { TreeListComponent } from './tree-list.component';
describe('TreeListComponent', () => {
let component: TreeListComponent;
let fixture: ComponentFixture<TreeListComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ TreeListComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(TreeListComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});