feat(settings): wire ANALYSIS_BACKGROUND into landing loader and add CI notes
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import { test, expect } from 'vitest';
|
||||
import { settingsService } from '../../lib/settings.server';
|
||||
|
||||
test('landing loader respects ANALYSIS_BACKGROUND', async () => {
|
||||
await settingsService.set('ANALYSIS_BACKGROUND', { enabled: true }, 'test');
|
||||
const val = await settingsService.get('ANALYSIS_BACKGROUND');
|
||||
expect(val).toEqual({ enabled: true });
|
||||
});
|
||||
Reference in New Issue
Block a user