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

import { AddedToCartMsgModalComponent } from './added-to-cart-msg-modal.component';

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

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

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

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