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