gallery-frontend/src/app/gallery/album-item/album-item.component.spec.ts

26 lines
654 B
TypeScript
Raw Normal View History

2017-08-09 13:41:32 +02:00
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();
});
});