Files
iTunes/dashboard/src/app/artist/artist.component.spec.ts

26 lines
632 B
TypeScript

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