Files
wgenerator/src/app/modules/shows/services/show-song.service.spec.ts
2020-05-13 19:35:21 +02:00

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();
});
});