2019-10-07 23:10:21 +00:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
2019-11-21 00:14:37 +00:00
|
|
|
import { ChannelsTablesComponent } from './channels-tables.component';
|
2019-10-07 23:10:21 +00:00
|
|
|
|
2019-11-21 00:14:37 +00:00
|
|
|
describe('ChannelsTablesComponent', () => {
|
|
|
|
let component: ChannelsTablesComponent;
|
|
|
|
let fixture: ComponentFixture<ChannelsTablesComponent>;
|
2019-10-07 23:10:21 +00:00
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2019-11-21 00:14:37 +00:00
|
|
|
declarations: [ ChannelsTablesComponent ]
|
2019-10-07 23:10:21 +00:00
|
|
|
})
|
|
|
|
.compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2019-11-21 00:14:37 +00:00
|
|
|
fixture = TestBed.createComponent(ChannelsTablesComponent);
|
2019-10-07 23:10:21 +00:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|