Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/spec.types.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,7 @@ const MISSING_SDK_TYPES = [
'Annotations',
'ModelHint',
'ModelPreferences',
'Icons',
]

function extractExportedTypes(source: string): string[] {
Expand All @@ -699,7 +700,7 @@ describe('Spec Types', () => {
it('should define some expected types', () => {
expect(specTypes).toContain('JSONRPCNotification');
expect(specTypes).toContain('ElicitResult');
expect(specTypes).toHaveLength(93);
expect(specTypes).toHaveLength(94);
});

it('should have up to date list of missing sdk types', () => {
Expand Down