File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/services/code-index/processors/__tests__ Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -242,6 +242,7 @@ describe("Fallback Extensions Configuration", () => {
242242 expect ( shouldUseFallbackChunking ( ".vb" ) ) . toBe ( true )
243243 expect ( shouldUseFallbackChunking ( ".scala" ) ) . toBe ( true )
244244 expect ( shouldUseFallbackChunking ( ".swift" ) ) . toBe ( true )
245+ expect ( shouldUseFallbackChunking ( ".al" ) ) . toBe ( true )
245246
246247 // Extensions that should not use fallback (have working parsers)
247248 expect ( shouldUseFallbackChunking ( ".js" ) ) . toBe ( false )
@@ -258,5 +259,7 @@ describe("Fallback Extensions Configuration", () => {
258259 expect ( shouldUseFallbackChunking ( ".Vb" ) ) . toBe ( true )
259260 expect ( shouldUseFallbackChunking ( ".SCALA" ) ) . toBe ( true )
260261 expect ( shouldUseFallbackChunking ( ".Scala" ) ) . toBe ( true )
262+ expect ( shouldUseFallbackChunking ( ".AL" ) ) . toBe ( true )
263+ expect ( shouldUseFallbackChunking ( ".Al" ) ) . toBe ( true )
261264 } )
262265} )
You can’t perform that action at this time.
0 commit comments