mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-22 07:15:47 +00:00
9 lines
304 B
TypeScript
9 lines
304 B
TypeScript
import { describe, expect, it } from 'vitest';
|
|
import { FAVORITES_OFFLINE_JOB_ID } from '@/features/offline/utils/favoritesOfflineConstants';
|
|
|
|
describe('favoritesOfflineConstants', () => {
|
|
it('uses a stable virtual job id', () => {
|
|
expect(FAVORITES_OFFLINE_JOB_ID).toBe('__favorites__');
|
|
});
|
|
});
|