import { ComponentFixture, TestBed } from '@angular/core/testing'; import { TermsOfServiceComponent } from './terms-of-service.component'; import { TranslateModule } from '@ngx-translate/core'; describe('TermsOfServiceComponent', () => { let component: TermsOfServiceComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [TermsOfServiceComponent, TranslateModule.forRoot()], }).compileComponents(); fixture = TestBed.createComponent(TermsOfServiceComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });