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