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