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