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

26 lines
678 B
TypeScript
Raw Normal View History

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