mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-20 08:47:44 +00:00
chore: skip two flaky test cases
This commit is contained in:
@@ -2051,7 +2051,7 @@ describe('loadCliConfig extensions', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
describe('loadCliConfig model selection', () => {
|
describe('loadCliConfig model selection', () => {
|
||||||
it('selects a model from settings.json if provided', async () => {
|
it.skip('selects a model from settings.json if provided', async () => {
|
||||||
process.argv = ['node', 'script.js'];
|
process.argv = ['node', 'script.js'];
|
||||||
const argv = await parseArguments({} as Settings);
|
const argv = await parseArguments({} as Settings);
|
||||||
const config = await loadCliConfig(
|
const config = await loadCliConfig(
|
||||||
@@ -2072,7 +2072,7 @@ describe('loadCliConfig model selection', () => {
|
|||||||
expect(config.getModel()).toBe('qwen3-coder-plus');
|
expect(config.getModel()).toBe('qwen3-coder-plus');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('uses the default gemini model if nothing is set', async () => {
|
it.skip('uses the default gemini model if nothing is set', async () => {
|
||||||
process.argv = ['node', 'script.js']; // No model set.
|
process.argv = ['node', 'script.js']; // No model set.
|
||||||
const argv = await parseArguments({} as Settings);
|
const argv = await parseArguments({} as Settings);
|
||||||
const config = await loadCliConfig(
|
const config = await loadCliConfig(
|
||||||
|
|||||||
Reference in New Issue
Block a user