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

26 lines
625 B
TypeScript
Raw Normal View History

2017-08-09 13:41:32 +02:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { AlbumComponent } from './album.component';
describe('AlbumComponent', () => {
let component: AlbumComponent;
let fixture: ComponentFixture<AlbumComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ AlbumComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AlbumComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});