mirror of
https://github.com/Syngnat/GoNavi.git
synced 2026-05-31 08:59:48 +08:00
- 修复通义千问百炼 Anthropic 兼容鉴权头与健康检查请求 - 拆分通义千问百炼通用与 Coding Plan 双入口,调整预设回填与模型策略 - 修复火山 Coding Plan 模型列表过滤逻辑,避免混入无关模型 - 统一 OpenAI 兼容供应商路径与模型列表处理,补充相关服务层测试 - 优化 AI 设置供应商卡片布局,统一高度并收紧文本展示 - 将聊天区模型校验提示改为输入框上方的内联提示卡,补充前端回归测试
57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
TypeScript
import { describe, expect, it } from 'vitest';
|
|
|
|
import {
|
|
PROVIDER_PRESET_CARD_BASE_STYLE,
|
|
PROVIDER_PRESET_CARD_CONTENT_STYLE,
|
|
PROVIDER_PRESET_CARD_DESCRIPTION_STYLE,
|
|
PROVIDER_PRESET_GRID_STYLE,
|
|
PROVIDER_PRESET_CARD_TITLE_STYLE,
|
|
} from './aiSettingsPresetLayout';
|
|
|
|
describe('ai settings preset layout', () => {
|
|
it('uses a fixed grid auto row height so provider bubbles stay visually consistent across rows', () => {
|
|
expect(PROVIDER_PRESET_GRID_STYLE).toMatchObject({
|
|
display: 'grid',
|
|
gridTemplateColumns: 'repeat(3, minmax(0, 1fr))',
|
|
gap: 6,
|
|
gridAutoRows: '96px',
|
|
alignItems: 'stretch',
|
|
});
|
|
});
|
|
|
|
it('stretches each provider card to fill the row height', () => {
|
|
expect(PROVIDER_PRESET_CARD_BASE_STYLE).toMatchObject({
|
|
display: 'flex',
|
|
alignItems: 'flex-start',
|
|
gap: 10,
|
|
height: '100%',
|
|
minHeight: '96px',
|
|
overflow: 'hidden',
|
|
});
|
|
});
|
|
|
|
it('keeps the text column compact instead of pinning the description to the bottom', () => {
|
|
expect(PROVIDER_PRESET_CARD_CONTENT_STYLE).toMatchObject({
|
|
minWidth: 0,
|
|
flex: 1,
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
});
|
|
|
|
expect(PROVIDER_PRESET_CARD_DESCRIPTION_STYLE).toMatchObject({
|
|
marginTop: 4,
|
|
display: '-webkit-box',
|
|
WebkitLineClamp: 2,
|
|
WebkitBoxOrient: 'vertical',
|
|
overflow: 'hidden',
|
|
});
|
|
|
|
expect(PROVIDER_PRESET_CARD_TITLE_STYLE).toMatchObject({
|
|
display: '-webkit-box',
|
|
WebkitLineClamp: 2,
|
|
WebkitBoxOrient: 'vertical',
|
|
overflow: 'hidden',
|
|
});
|
|
});
|
|
});
|