2026-08-14 18:49:31 +00:00
|
|
|
import { describe, expect, it } from 'vitest';
|
|
|
|
|
import { getCuratedSkillsSources } from './curated-sources.js';
|
|
|
|
|
|
|
|
|
|
describe('getCuratedSkillsSources', () => {
|
2026-08-20 01:40:10 +03:00
|
|
|
it('includes the Anthropic curated source', () => {
|
|
|
|
|
const anthropic = getCuratedSkillsSources().find((source) => source.id === 'anthropic');
|
|
|
|
|
expect(anthropic).toBeDefined();
|
|
|
|
|
expect(anthropic.label).toBe('Anthropic');
|
2026-08-14 18:49:31 +00:00
|
|
|
});
|
|
|
|
|
});
|