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