- Create an ElsArtistService to use common query - Move services in a subfolder Use a function to add sort filter
17 lines
368 B
TypeScript
17 lines
368 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { ElsAlbumService } from './els-album.service';
|
|
|
|
describe('ElsAlbumService', () => {
|
|
let service: ElsAlbumService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(ElsAlbumService);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|