The Skills Catalog source dropdown showed "ClawdHub"; the registry brands itself as ClawHub. Update curated/fallback labels across web, UI, and VS Code, align docs, and add regression tests. Co-authored-by: Serhii Dziupin <makeittech@users.noreply.github.com>
11 lines
395 B
JavaScript
11 lines
395 B
JavaScript
import { describe, expect, it } from 'vitest';
|
|
import { getCuratedSkillsSources } from './curated-sources.js';
|
|
|
|
describe('getCuratedSkillsSources', () => {
|
|
it('labels the ClawHub curated source as ClawHub', () => {
|
|
const clawhub = getCuratedSkillsSources().find((source) => source.id === 'clawdhub');
|
|
expect(clawhub).toBeDefined();
|
|
expect(clawhub.label).toBe('ClawHub');
|
|
});
|
|
});
|