import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { AlbumItemComponent } from './album-item.component'; describe('AlbumItemComponent', () => { let component: AlbumItemComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ AlbumItemComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(AlbumItemComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should be created', () => { expect(component).toBeTruthy(); }); });