import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { TermsComponent } from './profile.component'; describe('ProfileComponent', () => { let component: TermsComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ TermsComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(TermsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });