Files
luthor/otis/src/app/offices/office-detail/office-detail.component.spec.ts
2021-01-05 13:02:52 +05:30

27 lines
696 B
TypeScript

import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { OfficeDetailComponent } from './office-detail.component';
describe('OfficeDetailComponent', () => {
let component: OfficeDetailComponent;
let fixture: ComponentFixture<OfficeDetailComponent>;
beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [OfficeDetailComponent],
}).compileComponents();
}),
);
beforeEach(() => {
fixture = TestBed.createComponent(OfficeDetailComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});