Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

test-your-types测试你的类型

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

186

周安装

8

GitHub Stars

2

下载量

65
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:test-your-types(测试你的类型)
来源仓库:https://github.com/marius-townhouse/effective-typescript-skills
仓库路径:skills/test-your-types
安装命令:
npx skills add https://github.com/marius-townhouse/effective-typescript-skills --skill test-your-types
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/marius-townhouse/effective-typescript-skills --skill test-your-types

简介

用于 TypeScript 类型系统的静态分析与测试覆盖检查。

  • 适合识别类型错误、验证泛型约束或确保类型安全。
  • 使用时应结合 tsconfig 配置与严格模式选项。
  • 建议将类型测试纳入 CI 流程,提前发现潜在问题。
  • 安装方式:通过 GitHub 仓库安装,支持 Codex、Claude、Cursor、Gemini CLI。

SKILL.md

Write Tests for Your Types

Overview

Just as you write tests for runtime code, you should write tests for your types. Type-level code can have bugs too, and type declarations can drift out of sync with implementations. Testing types ensures your declarations work correctly and catch the errors they should.

Type testing is particularly important for library authors, complex type utilities, and whenever types are defined separately from implementations.

When to Use This Skill

  • Writing type declarations for libraries
  • Creating complex type utilities
  • Types and implementation are in separate files
  • Refactoring type-level code
  • Types contain conditional logic or recursion

The Iron Rule

Write tests for your types. Test that valid types work, invalid types fail, and the error messages are helpful.

Detection

Watch for these situations:

// RED FLAGS - Untested type logic
type ComplexTransform<T> = /* 10 lines of conditional types */;
// No tests - how do you know it works?

declare function libraryFn<T>(input: T): SomeTransform<T>;
// Implementation in JS, types in d.ts - can drift apart

What to Test

Test three things:

  1. Valid types work - Expected types are produced
  2. Invalid types fail - Type errors occur where expected
  3. Error messages help - Errors guide users to fixes

Testing with @ts-expect-error

Use @ts-expect-error to assert that a line should produce a type error:

// myFunction.test.ts
import { myFunction } from './myFunction';

// Test 1: Valid types work
const result1 = myFunction('hello');
type Test1 = typeof result1;  // Should be string

// Test 2: Invalid types fail
// @ts-expect-error - number not assignable to string
const result2 = myFunction(42);

// Test 3: Error message is helpful
// When the error goes away, TypeScript warns:
// "Unused '@ts-expect-error' directive"

Testing Type Utilities

// type-utils.ts
export type DeepReadonly<T> = {
  readonly [K in keyof T]: T[K] extends object
    ? DeepReadonly<T[K]>
    : T[K];
};

// type-utils.test.ts
import type { DeepReadonly } from './type-utils';

// Test: Simple object
type Case1 = DeepReadonly<{ x: number }>;
const test1: Case1 = { x: 1 };
// @ts-expect-error - readonly
test1.x = 2;

// Test: Nested object
type Case2 = DeepReadonly<{ nested: { value: string } }>;
const test2: Case2 = { nested: { value: 'hi' } };
// @ts-expect-error - deeply readonly
// @ts-expect-error - deeply readonly
test2.nested.value = 'bye';

// Test: Arrays
type Case3 = DeepReadonly<string[]>;
const test3: Case3 = ['a', 'b'];
// @ts-expect-error - readonly array
test3.push('c');

Testing with expect-type

The expect-type library provides type assertion helpers:

import { expectType, expectError } from 'expect-type';

// Test return types
const result = myFunction('input');
expectType<string>(result);

// Test that errors occur
expectError(myFunction(42));

// Test complex types
interface User { name: string; }
const user = fetchUser();
expectType<User>(user);

Testing with tsd

tsd is a CLI tool for testing type definitions:

// index.test-d.ts
import { expectType, expectError } from 'tsd';
import { concat } from '.';

// Test: string + string = string
expectType<string>(concat('foo', 'bar'));

// Test: number + number = number
expectType<number>(concat(1, 2));

// Test: mixed types = error
expectError(concat('foo', 1));

Run with: npx tsd

Testing with Vitest

Vitest has built-in type testing:

// test/types.test-d.ts
import { describe, expectTypeOf, it } from 'vitest';
import { pick } from './utils';

describe('pick', () => {
  it('should pick specified keys', () => {
    const obj = { a: 1, b: 2, c: 3 };
    const picked = pick(obj, 'a', 'b');

    expectTypeOf(picked).toEqualTypeOf<{ a: number; b: number }>();
  });

  it('should not allow unpicked keys', () => {
    const obj = { a: 1, b: 2 };
    const picked = pick(obj, 'a');

    // @ts-expect-error - 'b' was not picked
    picked.b;
  });
});

Run with: npx vitest typecheck

Testing Error Messages

Good error messages are part of the API:

// Test that error messages are helpful
type Check<T> = T extends string ? T : never;

// Bad: Error is just "Type 'number' is not assignable to type 'never'"
type Bad = Check<number>;

// Better: Use meaningful type names
type CheckWithMessage<T> = T extends string
  ? T
  : 'Error: Expected string, received something else';

Testing Edge Cases

// Test with unions
type UnionTest = MyType<string | number>;
// Should distribute: MyType<string> | MyType<number>

// Test with never
type NeverTest = MyType<never>;
// Should handle never gracefully

// Test with any
type AnyTest = MyType<any>;
// Should not crash or produce unexpected results

// Test with complex objects
type ComplexTest = MyType<{ a: { b: { c: string } } }>;
// Should handle nesting correctly

Pressure Resistance Protocol

When pressured to skip type tests:

  1. Show the risk: Untested types can have subtle bugs
  2. Start simple: @ts-expect-error tests are easy to add
  3. Automate: Add type tests to CI pipeline
  4. Document: Tests serve as documentation for complex types

Red Flags

Anti-PatternWhy It's Bad
No type tests for complex utilitiesBugs go unnoticed
Only testing happy pathsEdge cases break
Types in separate file from testsCan drift apart
Manual testing in IDENot reproducible

Common Rationalizations

"The type checker will catch errors"

Reality: The type checker validates against your types, but doesn't validate that your types are correct. Only tests can do that.

"It's just types, not real code"

Reality: Types are code that runs at compile time. Complex type logic needs testing just like runtime logic.

"I'll notice if something breaks"

Reality: Type bugs are subtle. You might not notice until users report issues.

Quick Reference

ToolBest ForCommand
@ts-expect-errorQuick tests, inlineBuilt-in
expect-typeUnit test stylenpm test
tsdLibrary definitionsnpx tsd
VitestFull test suitenpx vitest typecheck
dtslintDefinitelyTypednpx dtslint

The Bottom Line

Types are code and need tests. Use @ts-expect-error for quick checks, dedicated libraries for comprehensive testing. Test valid cases, invalid cases, and error messages.

Reference

  • Effective TypeScript, 2nd Edition by Dan Vanderkam
  • Item 55: Write Tests for Your Types

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.1%
按下载量换算24

Claude

26.85%
按下载量换算17

Cursor

18.91%
按下载量换算12

Gemini CLI

8.49%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills