17 lines
364 B
TypeScript
17 lines
364 B
TypeScript
import {TestBed} from '@angular/core/testing';
|
|
|
|
import {ShowSongService} from './show-song.service';
|
|
|
|
describe('ShowSongService', () => {
|
|
let service: ShowSongService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(ShowSongService);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|