2021-08-28 21:03:18 +00:00
|
|
|
import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
|
|
import { RouterTestingModule } from '@angular/router/testing';
|
|
|
|
import { StoreModule } from '@ngrx/store';
|
|
|
|
import { CommonService } from '../../shared/services/common.service';
|
|
|
|
import { DataService } from '../../shared/services/data.service';
|
|
|
|
import { LoggerService } from '../../shared/services/logger.service';
|
|
|
|
import { mockDataService, mockLoggerService, mockRTLEffects } from '../../shared/test-helpers/mock-services';
|
|
|
|
import { SharedModule } from '../../shared/shared.module';
|
|
|
|
import { RTLEffects } from '../../store/rtl.effects';
|
2019-11-19 23:49:58 +00:00
|
|
|
|
2021-12-29 23:08:41 +00:00
|
|
|
import { RootReducer } from '../../store/rtl.reducers';
|
|
|
|
import { LNDReducer } from '../../lnd/store/lnd.reducers';
|
2022-05-01 17:35:20 +00:00
|
|
|
import { CLNReducer } from '../../cln/store/cln.reducers';
|
2021-12-29 23:08:41 +00:00
|
|
|
import { ECLReducer } from '../../eclair/store/ecl.reducers';
|
2019-11-19 23:49:58 +00:00
|
|
|
import { OnChainComponent } from './on-chain.component';
|
2021-08-28 21:03:18 +00:00
|
|
|
import { OnChainTransactionHistoryComponent } from './utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component';
|
|
|
|
import { UTXOTablesComponent } from './utxo-tables/utxo-tables.component';
|
|
|
|
import { OnChainUTXOsComponent } from './utxo-tables/utxos/utxos.component';
|
2019-11-19 23:49:58 +00:00
|
|
|
|
|
|
|
describe('OnChainComponent', () => {
|
|
|
|
let component: OnChainComponent;
|
|
|
|
let fixture: ComponentFixture<OnChainComponent>;
|
|
|
|
|
2021-08-28 21:03:18 +00:00
|
|
|
beforeEach(waitForAsync(() => {
|
2019-11-19 23:49:58 +00:00
|
|
|
TestBed.configureTestingModule({
|
2021-08-28 21:03:18 +00:00
|
|
|
declarations: [OnChainComponent, UTXOTablesComponent, OnChainTransactionHistoryComponent, OnChainUTXOsComponent],
|
|
|
|
imports: [
|
|
|
|
BrowserAnimationsModule,
|
|
|
|
SharedModule,
|
|
|
|
RouterTestingModule,
|
2022-05-01 17:35:20 +00:00
|
|
|
StoreModule.forRoot({ root: RootReducer, lnd: LNDReducer, cln: CLNReducer, ecl: ECLReducer })
|
2021-08-28 21:03:18 +00:00
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
CommonService,
|
|
|
|
{ provide: LoggerService, useClass: mockLoggerService },
|
|
|
|
{ provide: DataService, useClass: mockDataService },
|
|
|
|
{ provide: RTLEffects, useClass: mockRTLEffects },
|
|
|
|
{ provide: DataService, useClass: mockDataService }
|
|
|
|
]
|
|
|
|
}).
|
|
|
|
compileComponents();
|
2019-11-19 23:49:58 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(OnChainComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
2021-08-28 21:03:18 +00:00
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
TestBed.resetTestingModule();
|
|
|
|
});
|
2019-11-19 23:49:58 +00:00
|
|
|
});
|