We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc8ae99 commit ae689c8Copy full SHA for ae689c8
1 file changed
tests/parsers/native-drop-classification.test.ts
@@ -71,6 +71,7 @@ describe('classifyNativeDrops', () => {
71
it('exposes the native-supported extension set for callers', () => {
72
expect(NATIVE_SUPPORTED_EXTENSIONS.has('.ts')).toBe(true);
73
expect(NATIVE_SUPPORTED_EXTENSIONS.has('.py')).toBe(true);
74
+ expect(NATIVE_SUPPORTED_EXTENSIONS.has('.gleam')).toBe(true);
75
expect(NATIVE_SUPPORTED_EXTENSIONS.has('.fs')).toBe(false);
76
expect(NATIVE_SUPPORTED_EXTENSIONS.has('.fsx')).toBe(false);
77
});
0 commit comments