astute/AstuteClient2/src/app/ag-grid-components/so-qty-formatter/so-qty-formatter.component.spec.ts
Akash Shah 7ba346e60a qty renderer and formatter added and implemented:
bug to fix: weird fraction issue

Added functoinality to delete detail buttonn (both SO and Inv)
2019-07-17 02:29:17 -04:00

26 lines
686 B
TypeScript

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