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/shared/components/ln-services/boltz/swap-service-info/swap-service-info.component...

36 lines
986 B
TypeScript

import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { SharedModule } from '../../../../shared.module';
import { SwapServiceInfoComponent } from './swap-service-info.component';
describe('SwapServiceInfoComponent', () => {
let component: SwapServiceInfoComponent;
let fixture: ComponentFixture<SwapServiceInfoComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [SwapServiceInfoComponent],
imports: [
BrowserAnimationsModule,
SharedModule
]
}).
compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(SwapServiceInfoComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
afterEach(() => {
TestBed.resetTestingModule();
});
});