Skip to content

Commit ae689c8

Browse files
committed
test: add explicit .gleam assertion to NATIVE_SUPPORTED_EXTENSIONS test (#1105)
1 parent cc8ae99 commit ae689c8

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

tests/parsers/native-drop-classification.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ describe('classifyNativeDrops', () => {
7171
it('exposes the native-supported extension set for callers', () => {
7272
expect(NATIVE_SUPPORTED_EXTENSIONS.has('.ts')).toBe(true);
7373
expect(NATIVE_SUPPORTED_EXTENSIONS.has('.py')).toBe(true);
74+
expect(NATIVE_SUPPORTED_EXTENSIONS.has('.gleam')).toBe(true);
7475
expect(NATIVE_SUPPORTED_EXTENSIONS.has('.fs')).toBe(false);
7576
expect(NATIVE_SUPPORTED_EXTENSIONS.has('.fsx')).toBe(false);
7677
});

0 commit comments

Comments
 (0)