26 lines
671 B
TypeScript
26 lines
671 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { MemberPolicyComponent } from './member-policy.component';
|
|
|
|
describe('MemberPolicyComponent', () => {
|
|
let component: MemberPolicyComponent;
|
|
let fixture: ComponentFixture<MemberPolicyComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ MemberPolicyComponent ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(MemberPolicyComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|