diff --git a/web-app/src/services/__tests__/models.test.ts b/web-app/src/services/__tests__/models.test.ts index 286fb01a4..b6b61e0ef 100644 --- a/web-app/src/services/__tests__/models.test.ts +++ b/web-app/src/services/__tests__/models.test.ts @@ -924,7 +924,7 @@ describe('models service', () => { expect(result).toBe('YELLOW') // Should use fallback }) - it('should return RED when there is an error', async () => { + it('should return GREY when there is an error', async () => { const mockEngineWithError = { ...mockEngine, isModelSupported: vi.fn().mockRejectedValue(new Error('Test error')), @@ -934,7 +934,7 @@ describe('models service', () => { const result = await isModelSupported('/path/to/model.gguf') - expect(result).toBe('RED') + expect(result).toBe('GREY') }) }) })