mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: update test to reflect Swift parser restoration
Swift no longer uses fallback chunking since we restored the parser
This commit is contained in:
parent
8c1c99dc36
commit
bd04af2378
1 changed files with 1 additions and 1 deletions
|
|
@ -243,9 +243,9 @@ describe("Fallback Extensions Configuration", () => {
|
|||
// Extensions that should use fallback
|
||||
expect(shouldUseFallbackChunking(".vb")).toBe(true)
|
||||
expect(shouldUseFallbackChunking(".scala")).toBe(true)
|
||||
expect(shouldUseFallbackChunking(".swift")).toBe(true)
|
||||
|
||||
// Extensions that should not use fallback (have working parsers)
|
||||
expect(shouldUseFallbackChunking(".swift")).toBe(false) // Swift has a working parser
|
||||
expect(shouldUseFallbackChunking(".js")).toBe(false)
|
||||
expect(shouldUseFallbackChunking(".ts")).toBe(false)
|
||||
expect(shouldUseFallbackChunking(".py")).toBe(false)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue