You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component...

26 lines
699 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ChannelRebalanceComponent } from './channel-rebalance.component';
describe('ChannelRebalanceComponent', () => {
let component: ChannelRebalanceComponent;
let fixture: ComponentFixture<ChannelRebalanceComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ChannelRebalanceComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ChannelRebalanceComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});