jan/web-app/src/lib/model.spec.ts
Louis bf3f22c854
fix: should not spawn many llama.cpp servers for the same model (#4994)
* fix: should not spawn many llama.cpp servers for the same model

* chore: test step placeholder for the new revamp

* chore: coverage check should not fail pipeline
2025-05-15 21:27:41 +07:00

7 lines
197 B
TypeScript

import { expect, test } from 'vitest'
import { normalizeProvider } from './models'
test('provider name should be normalized', () => {
expect(normalizeProvider('llama.cpp')).toBe('llama-cpp')
})