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/home/fee-info/fee-info.component.spec.ts

30 lines
711 B
TypeScript

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