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

import { BillingAddressTabComponent } from './billing-address-tab.component';

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

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

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

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