mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
19 lines
489 B
TypeScript
19 lines
489 B
TypeScript
|
|
import { Test, TestingModule } from '@nestjs/testing';
|
||
|
|
import { SpotifyApiService } from './spotify-api.service';
|
||
|
|
|
||
|
|
describe('SpotifyApiService', () => {
|
||
|
|
let service: SpotifyApiService;
|
||
|
|
|
||
|
|
beforeEach(async () => {
|
||
|
|
const module: TestingModule = await Test.createTestingModule({
|
||
|
|
providers: [SpotifyApiService],
|
||
|
|
}).compile();
|
||
|
|
|
||
|
|
service = module.get<SpotifyApiService>(SpotifyApiService);
|
||
|
|
});
|
||
|
|
|
||
|
|
it('should be defined', () => {
|
||
|
|
expect(service).toBeDefined();
|
||
|
|
});
|
||
|
|
});
|