Skip to content

Commit ada6f01

Browse files
committed
test: add AL language extension tests to VB.NET fallback chunking spec
1 parent 440412d commit ada6f01

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/services/code-index/processors/__tests__/parser.vb.spec.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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
})

0 commit comments

Comments
 (0)