mirror of
https://github.com/bergside/typeui.git
synced 2026-09-19 07:24:37 +08:00
12 lines
405 B
TypeScript
12 lines
405 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { buildDefaultSkillMetadata } from "../src/skillMetadata";
|
|
|
|
describe("buildDefaultSkillMetadata", () => {
|
|
it("builds a slug name and short generated style description", () => {
|
|
expect(buildDefaultSkillMetadata("TypeUI Pro")).toEqual({
|
|
name: "typeui-pro",
|
|
description: "TypeUI Pro style guide for AI coding agents."
|
|
});
|
|
});
|
|
});
|