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