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