import { ComponentFixture, TestBed } from '@angular/core/testing';

import { ProductLessQuantityPopupComponent } from './product-less-quantity-popup.component';

describe('ProductLessQuantityPopupComponent', () => {
  let component: ProductLessQuantityPopupComponent;
  let fixture: ComponentFixture<ProductLessQuantityPopupComponent>;

  beforeEach(async () => {
    await TestBed.configureTestingModule({
      declarations: [ ProductLessQuantityPopupComponent ]
    })
    .compileComponents();

    fixture = TestBed.createComponent(ProductLessQuantityPopupComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});
