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