2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-10-31 09:20:27 +00:00
RTL/src/app/shared/components/services/boltz/swap-out-info-graphics/info-graphics.component.spec.ts

26 lines
713 B
TypeScript
Raw Normal View History

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