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