mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-30 04:19:18 +00:00
26 lines
633 B
TypeScript
26 lines
633 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { PrivacyComponent } from './privacy.component';
|
|
|
|
describe('PrivacyComponent', () => {
|
|
let component: PrivacyComponent;
|
|
let fixture: ComponentFixture<PrivacyComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ PrivacyComponent ]
|
|
})
|
|
.compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(PrivacyComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|