Files
openchamber/packages/web/server/lib/skills-catalog/curated-sources.test.js
T

11 lines
397 B
JavaScript
Raw Normal View History

import { describe, expect, it } from 'vitest';
import { getCuratedSkillsSources } from './curated-sources.js';
describe('getCuratedSkillsSources', () => {
it('includes the Anthropic curated source', () => {
const anthropic = getCuratedSkillsSources().find((source) => source.id === 'anthropic');
expect(anthropic).toBeDefined();
expect(anthropic.label).toBe('Anthropic');
});
});