2018-04-06 06:59:49 +00:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
2018-05-28 05:41:56 +00:00
|
|
|
import { MemberPolicyComponent } from './member-policy.component';
|
2018-04-06 06:59:49 +00:00
|
|
|
|
2018-05-28 05:41:56 +00:00
|
|
|
describe('MemberPolicyComponent', () => {
|
|
|
|
let component: MemberPolicyComponent;
|
|
|
|
let fixture: ComponentFixture<MemberPolicyComponent>;
|
2018-04-06 06:59:49 +00:00
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2018-05-28 05:41:56 +00:00
|
|
|
declarations: [ MemberPolicyComponent ]
|
2018-04-06 06:59:49 +00:00
|
|
|
})
|
|
|
|
.compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2018-05-28 05:41:56 +00:00
|
|
|
fixture = TestBed.createComponent(MemberPolicyComponent);
|
2018-04-06 06:59:49 +00:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|