2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-11 13:10:41 +00:00
RTL/src/app/lnd/peers-channels/channels/channels-tables/channels-tables.component.spec.ts

26 lines
685 B
TypeScript
Raw Normal View History

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