29 lines
769 B
TypeScript
29 lines
769 B
TypeScript
|
/* tslint:disable:no-unused-variable */
|
||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
import { By } from '@angular/platform-browser';
|
||
|
import { DebugElement } from '@angular/core';
|
||
|
|
||
|
import { ProfileComponent } from './profile.component';
|
||
|
|
||
|
describe('ProfileComponent', () => {
|
||
|
let component: ProfileComponent;
|
||
|
let fixture: ComponentFixture<ProfileComponent>;
|
||
|
|
||
|
beforeEach(async(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
declarations: [ ProfileComponent ]
|
||
|
})
|
||
|
.compileComponents();
|
||
|
}));
|
||
|
|
||
|
beforeEach(() => {
|
||
|
fixture = TestBed.createComponent(ProfileComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|