Sengi-Windows-MacOS-Linux/src/app/components/stream/status/status.component.spec.ts

26 lines
629 B
TypeScript
Raw Normal View History

2018-03-16 04:48:30 +01:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { StatusComponent } from './status.component';
2018-03-16 04:48:30 +01:00
2018-10-28 21:58:06 +01:00
xdescribe('StatusComponent', () => {
let component: StatusComponent;
let fixture: ComponentFixture<StatusComponent>;
2018-03-16 04:48:30 +01:00
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ StatusComponent ]
2018-03-16 04:48:30 +01:00
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(StatusComponent);
2018-03-16 04:48:30 +01:00
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});