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

import { ShippingSettingsBodyComponent } from './shipping-settings-body.component';

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

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

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

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