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