mirror of
https://github.com/dyiop/astute.git
synced 2025-06-05 09:16:04 -04:00
bug to fix: weird fraction issue Added functoinality to delete detail buttonn (both SO and Inv)
26 lines
686 B
TypeScript
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();
|
|
});
|
|
});
|