member_webapp/@overflow/member/component/member-terms.component.spec.ts

26 lines
664 B
TypeScript
Raw Normal View History

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