feat(core): improve @file autocomplete to prioritize filenames (#21064)

This commit is contained in:
Sehoon Shon
2026-03-04 12:24:34 -05:00
committed by GitHub
parent 66721379f8
commit bc89b05f01
3 changed files with 82 additions and 1 deletions

View File

@@ -120,8 +120,8 @@ describe('useAtCompletion', () => {
expect(result.current.suggestions.map((s) => s.value)).toEqual([
'src/',
'src/components/',
'src/index.js',
'src/components/',
'src/components/Button.tsx',
]);
});