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

26 lines
710 B
TypeScript
Raw Normal View History

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