blob: c45da18bf4b56d630bac8d70c8ce03edcabf47c7 [file] [log] [blame]
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { AddOfficeComponent } from './add-office.component';
describe('AddOfficeComponent', () => {
let component: AddOfficeComponent;
let fixture: ComponentFixture<AddOfficeComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ AddOfficeComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AddOfficeComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});