25 lines
623 B
TypeScript
25 lines
623 B
TypeScript
import {ComponentFixture, TestBed, waitForAsync} from '@angular/core/testing';
|
|
|
|
import {SongComponent} from './song.component';
|
|
|
|
describe('SongComponent', () => {
|
|
let component: SongComponent;
|
|
let fixture: ComponentFixture<SongComponent>;
|
|
|
|
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();
|
|
});
|
|
});
|