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

50 lines
1.7 KiB
TypeScript
Raw Normal View History

2021-08-28 21:03:18 +00:00
import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { StoreModule } from '@ngrx/store';
2021-12-29 23:08:41 +00:00
import { RootReducer } from '../../../../store/rtl.reducers';
import { LNDReducer } from '../../../../lnd/store/lnd.reducers';
import { CLNReducer } from '../../../../cln/store/cln.reducers';
2021-12-29 23:08:41 +00:00
import { ECLReducer } from '../../../../eclair/store/ecl.reducers';
2021-08-28 21:03:18 +00:00
import { LoggerService } from '../../../../shared/services/logger.service';
2019-10-07 23:10:21 +00:00
import { ChannelsTablesComponent } from './channels-tables.component';
2021-08-28 21:03:18 +00:00
import { SharedModule } from '../../../../shared/shared.module';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { mockLoggerService } from '../../../../shared/test-helpers/mock-services';
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
2021-08-28 21:03:18 +00:00
beforeEach(waitForAsync(() => {
2019-10-07 23:10:21 +00:00
TestBed.configureTestingModule({
2021-08-28 21:03:18 +00:00
declarations: [ChannelsTablesComponent],
imports: [
BrowserAnimationsModule,
SharedModule,
RouterTestingModule,
StoreModule.forRoot({ root: RootReducer, lnd: LNDReducer, cln: CLNReducer, ecl: ECLReducer })
2021-08-28 21:03:18 +00:00
],
providers: [
{ provide: LoggerService, useClass: mockLoggerService }
]
}).
compileComponents();
2019-10-07 23:10:21 +00:00
}));
beforeEach(() => {
fixture = TestBed.createComponent(ChannelsTablesComponent);
2019-10-07 23:10:21 +00:00
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
2021-08-28 21:03:18 +00:00
afterEach(() => {
TestBed.resetTestingModule();
});
2019-10-07 23:10:21 +00:00
});