brewman/overlord/src/app/product-ledger/product-ledger.component.spec.ts

26 lines
674 B
TypeScript
Raw Normal View History

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();
});
});