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