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