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