mirror of
https://github.com/apricote/Listory.git
synced 2026-02-08 02:37:03 +00:00
feat(api): fetch listens from spotify
This commit is contained in:
parent
f253a66f86
commit
f2065d3f1f
54 changed files with 1180 additions and 256 deletions
18
src/music-library/music-library.service.spec.ts
Normal file
18
src/music-library/music-library.service.spec.ts
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import { Test, TestingModule } from "@nestjs/testing";
|
||||
import { MusicLibraryService } from "./music-library.service";
|
||||
|
||||
describe("MusicLibraryService", () => {
|
||||
let service: MusicLibraryService;
|
||||
|
||||
beforeEach(async () => {
|
||||
const module: TestingModule = await Test.createTestingModule({
|
||||
providers: [MusicLibraryService]
|
||||
}).compile();
|
||||
|
||||
service = module.get<MusicLibraryService>(MusicLibraryService);
|
||||
});
|
||||
|
||||
it("should be defined", () => {
|
||||
expect(service).toBeDefined();
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue