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/clightning/network-info/fee-rates/fee-rates.component.spec.ts

26 lines
655 B
TypeScript

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