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