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