mirror of
https://github.com/jellyfin/jellyfin-sdk-typescript.git
synced 2024-11-23 14:09:43 +00:00
Fix type error in server discovery test
This commit is contained in:
parent
5b508ab7b0
commit
c3cf2e4049
@ -67,7 +67,7 @@ describe('RecommendedServerDiscovery', () => {
|
||||
|
||||
/* eslint-disable jest/no-standalone-expect */
|
||||
// NOTE: This test will only work if API_VERSION and MINIMUM_VERSION are not the same!
|
||||
itIf(API_VERSION !== MINIMUM_VERSION, 'should return an issue for outdated versions', async () => {
|
||||
itIf(API_VERSION.toString() !== MINIMUM_VERSION.toString(), 'should return an issue for outdated versions', async () => {
|
||||
const serverDiscovery = new RecommendedServerDiscovery(SDK_INSTANCE);
|
||||
const systemInfo = {
|
||||
Version: MINIMUM_VERSION,
|
||||
|
Loading…
Reference in New Issue
Block a user