angular2-data-table
Version:
angular2-data-table is a Angular2 component for presenting large and complex data.
33 lines (27 loc) • 843 B
text/typescript
import { async, TestBed, ComponentFixture } from '@angular/core/testing';
import { ProgressBarComponent } from '.';
describe('ProgressBarComponent', () => {
let fixture: ComponentFixture<ProgressBarComponent>;
let component: ProgressBarComponent;
let element;
// provide our implementations or mocks to the dependency injector
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [
ProgressBarComponent
]
});
});
beforeEach(async(() => {
TestBed.compileComponents().then(() => {
fixture = TestBed.createComponent(ProgressBarComponent);
component = fixture.componentInstance;
element = fixture.nativeElement;
});
}));
describe('fixture', () => {
it('should have a component instance', () => {
expect(component).toBeTruthy();
});
});
});