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