mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-29 04:00:36 +00:00
fix: change .geminiignore to .qwenignore
This commit is contained in:
parent
8bb8660c72
commit
1993156721
23 changed files with 120 additions and 118 deletions
|
|
@ -581,7 +581,7 @@ describe('handleAtCommand', () => {
|
|||
describe('gemini-ignore filtering', () => {
|
||||
it('should skip gemini-ignored files in @ commands', async () => {
|
||||
await createTestFile(
|
||||
path.join(testRootDir, '.geminiignore'),
|
||||
path.join(testRootDir, '.qwenignore'),
|
||||
'build/output.js',
|
||||
);
|
||||
const geminiIgnoredFile = await createTestFile(
|
||||
|
|
@ -611,9 +611,9 @@ describe('handleAtCommand', () => {
|
|||
);
|
||||
});
|
||||
});
|
||||
it('should process non-ignored files when .geminiignore is present', async () => {
|
||||
it('should process non-ignored files when .qwenignore is present', async () => {
|
||||
await createTestFile(
|
||||
path.join(testRootDir, '.geminiignore'),
|
||||
path.join(testRootDir, '.qwenignore'),
|
||||
'build/output.js',
|
||||
);
|
||||
const validFile = await createTestFile(
|
||||
|
|
@ -645,7 +645,7 @@ describe('handleAtCommand', () => {
|
|||
|
||||
it('should handle mixed gemini-ignored and valid files', async () => {
|
||||
await createTestFile(
|
||||
path.join(testRootDir, '.geminiignore'),
|
||||
path.join(testRootDir, '.qwenignore'),
|
||||
'dist/bundle.js',
|
||||
);
|
||||
const validFile = await createTestFile(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue