chore: format&lint
This commit is contained in:
parent
6b67cd1b57
commit
028a82ebeb
1 changed files with 9 additions and 2 deletions
|
|
@ -22,7 +22,12 @@ vi.mock('fs', async (importOriginal) => {
|
||||||
existsSync,
|
existsSync,
|
||||||
writeFileSync,
|
writeFileSync,
|
||||||
readFileSync,
|
readFileSync,
|
||||||
default: { ...(actual as unknown as Record<string, unknown>), existsSync, writeFileSync, readFileSync },
|
default: {
|
||||||
|
...(actual as unknown as Record<string, unknown>),
|
||||||
|
existsSync,
|
||||||
|
writeFileSync,
|
||||||
|
readFileSync,
|
||||||
|
},
|
||||||
} as unknown as typeof import('fs');
|
} as unknown as typeof import('fs');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -87,7 +92,9 @@ describe('initCommand', () => {
|
||||||
|
|
||||||
// Assert: Check that the correct prompt is submitted
|
// Assert: Check that the correct prompt is submitted
|
||||||
expect(result.type).toBe('submit_prompt');
|
expect(result.type).toBe('submit_prompt');
|
||||||
expect(result.content).toContain('You are Qwen Code, an interactive CLI agent');
|
expect(result.content).toContain(
|
||||||
|
'You are Qwen Code, an interactive CLI agent',
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
it(`should proceed to initialize when ${DEFAULT_CONTEXT_FILENAME} exists but is empty`, async () => {
|
it(`should proceed to initialize when ${DEFAULT_CONTEXT_FILENAME} exists but is empty`, async () => {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue