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

import { RemoveAllProductsComponent } from './remove-all-products.component';

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

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

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

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