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