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