mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-03-30 09:41:55 +00:00
11 lines
285 B
JavaScript
11 lines
285 B
JavaScript
const { CLAUDE_MODELS } = require('../config/models')
|
|
|
|
describe('models config', () => {
|
|
it('places Claude Sonnet 4.6 as the second Claude model option', () => {
|
|
expect(CLAUDE_MODELS[1]).toEqual({
|
|
value: 'claude-sonnet-4-6',
|
|
label: 'Claude Sonnet 4.6'
|
|
})
|
|
})
|
|
})
|