funky-framadate-front/src/app/features/shared/components/ui/static-pages/cgu/cgu.component.spec.ts

25 lines
578 B
TypeScript

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