docs: clarify openai scheduler flag semantics

This commit is contained in:
IanShaw027
2026-04-21 13:07:40 +08:00
parent 64e401e224
commit ebd053c87e
2 changed files with 13 additions and 3 deletions

View File

@@ -472,4 +472,14 @@ describe('admin SettingsView payment visible method controls', () => {
expect(showError).toHaveBeenCalled()
expect(String(showError.mock.calls.at(-1)?.[0] ?? '')).toContain('支付来源')
})
it('renders advanced scheduler copy as local experimental gateway policy', async () => {
const wrapper = mountView()
await flushPromises()
expect(wrapper.text()).toContain('OpenAI 实验调度策略')
expect(wrapper.text()).toContain('默认关闭。开启后仅影响本网关在 OpenAI 账号间的实验性调度选择逻辑')
expect(wrapper.text()).not.toContain('OpenAI 高级调度器')
})
})