Files
makelore/tests/unit/youth-plain-language-skill.test.ts
inman c809002180
Some checks failed
Electron E2E / Electron E2E (macos-latest) (push) Has been cancelled
Electron E2E / Electron E2E (ubuntu-latest) (push) Has been cancelled
Electron E2E / Electron E2E (windows-latest) (push) Has been cancelled
feat: add bundled OpenCode skills and refine module flow
2026-08-14 18:15:55 +08:00

14 lines
400 B
TypeScript

import { describe, expect, it } from 'vitest';
import { BUNDLED_COURSE_SKILL_IDS } from '@electron/opencode/course-skills';
describe('bundled Skill allowlist', () => {
it('keeps only the explicitly retained project Skills', () => {
expect([...BUNDLED_COURSE_SKILL_IDS]).toEqual([
'agent-browser',
'frontend-slides',
'grilling',
'planning-with-files',
]);
});
});