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