2020-03-16 15:57:57 +00:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
2021-02-21 19:02:31 +00:00
|
|
|
import { SwapOutInfoGraphicsComponent } from './info-graphics.component';
|
2020-03-16 15:57:57 +00:00
|
|
|
|
2021-02-21 19:02:31 +00:00
|
|
|
describe('SwapOutInfoGraphicsComponent', () => {
|
|
|
|
let component: SwapOutInfoGraphicsComponent;
|
|
|
|
let fixture: ComponentFixture<SwapOutInfoGraphicsComponent>;
|
2020-03-16 15:57:57 +00:00
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2021-02-21 19:02:31 +00:00
|
|
|
declarations: [ SwapOutInfoGraphicsComponent ]
|
2020-03-16 15:57:57 +00:00
|
|
|
})
|
|
|
|
.compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2021-02-21 19:02:31 +00:00
|
|
|
fixture = TestBed.createComponent(SwapOutInfoGraphicsComponent);
|
2020-03-16 15:57:57 +00:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|