From mattpocock-skills
Migrates test files from `as` type assertions to `@total-typescript/shoehorn`, using `fromPartial()` for partial data and `fromAny()` for intentionally incorrect data.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mattpocock-skills:migrate-to-shoehornThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
`shoehorn` 让你在测试中传递部分数据,同时保持 TypeScript 类型正确。它用类型安全的替代方案取代了 `as` 断言。
shoehorn 让你在测试中传递部分数据,同时保持 TypeScript 类型正确。它用类型安全的替代方案取代了 as 断言。
仅限测试代码。 切勿在生产代码中使用 shoehorn。
as 在测试中的问题:
as(as unknown as Type)用于传递故意错误的数据npm i @total-typescript/shoehorn
迁移前:
type Request = {
body: { id: string };
headers: Record<string, string>;
cookies: Record<string, string>;
// ...还有 20 个属性
};
it("gets user by id", () => {
// 只关心 body.id,但必须伪造整个 Request
getUser({
body: { id: "123" },
headers: {},
cookies: {},
// ...伪造所有 20 个属性
});
});
迁移后:
import { fromPartial } from "@total-typescript/shoehorn";
it("gets user by id", () => {
getUser(
fromPartial({
body: { id: "123" },
}),
);
});
as Type → fromPartial()迁移前:
getUser({ body: { id: "123" } } as Request);
迁移后:
import { fromPartial } from "@total-typescript/shoehorn";
getUser(fromPartial({ body: { id: "123" } }));
as unknown as Type → fromAny()迁移前:
getUser({ body: { id: 123 } } as unknown as Request); // 故意传错类型
迁移后:
import { fromAny } from "@total-typescript/shoehorn";
getUser(fromAny({ body: { id: 123 } }));
| 函数 | 使用场景 |
|---|---|
fromPartial() | 传递部分数据,仍能通过类型检查 |
fromAny() | 传递故意错误的数据(保留自动补全) |
fromExact() | 强制传入完整对象(后续可替换为 fromPartial) |
收集需求 — 询问用户:
as 断言造成了问题?安装并迁移:
npm i @total-typescript/shoehornas 断言的测试文件:grep -r " as [A-Z]" --include="*.test.ts" --include="*.spec.ts"as Type 替换为 fromPartial()as unknown as Type 替换为 fromAny()@total-typescript/shoehorn 添加 importnpx claudepluginhub devcxl/mattpocock-skills-zhMigrates test files from `as` type assertions to `@total-typescript/shoehorn` for type-safe partial test data. Activated when user mentions shoehorn or replacing `as` in tests.
Migrates test `as Type` casts to `@total-typescript/shoehorn` helpers like `fromPartial()`, targeting test files only.
Guides migration from Jest to Bun's test runner including import updates, mock/spy/timer compatibility, snapshot testing, and jest.config.js to bunfig.toml conversion.