fa106a46c9
* Adjust login page * Rework legal notice and pp * Add more custom animations * Add Router to navigation panel
25 lines
717 B
TypeScript
25 lines
717 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { PrivacyPolicyComponent } from './privacy-policy.component';
|
|
|
|
describe('PrivacyPolicyComponent', () => {
|
|
let component: PrivacyPolicyComponent;
|
|
let fixture: ComponentFixture<PrivacyPolicyComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [PrivacyPolicyComponent]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(PrivacyPolicyComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|