Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计异常

typescript-unit-testingTypeScript unit 测试

Agent Skill

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

总安装

6,068

周安装

258

GitHub Stars

8

下载量

2,126
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bmad-labs/skills --skill typescript-unit-testing

简介

辅助测试设计与自动化验证,支持单元测试用例编写与回归检查。

  • 可用于根据失败日志定位问题或制定测试策略。
  • 需确认项目测试框架和运行命令后再使用。
  • 涉及外部服务时应区分本地模拟与真实环境。
  • typescript-unit-testing 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Unit Testing Skill

Unit testing validates individual functions, methods, and classes in isolation by mocking all external dependencies.


Workflows

For guided, step-by-step execution of unit testing tasks, use the appropriate workflow:

WorkflowPurposeWhen to Use
SetupInitialize test infrastructureNew project or missing test setup
WritingWrite new unit testsCreating tests for components
ReviewingReview existing testsCode review, quality audit
RunningExecute testsRunning tests, analyzing results
DebuggingFix failing testsTests failing, need diagnosis
OptimizingImprove test performanceSlow tests, maintainability

Workflow Selection Guide

IMPORTANT: Before starting any testing task, identify the user's intent and load the appropriate workflow.

Detect User Intent → Select Workflow

User Says / WantsWorkflow to LoadFile
"Set up tests", "configure Jest", "add testing to project", "install test dependencies"Setupworkflows/setup/workflow.md
"Write tests", "add tests", "create tests", "test this service/controller"Writingworkflows/writing/workflow.md
"Review tests", "check test quality", "audit tests", "are these tests good?"Reviewingworkflows/reviewing/workflow.md
"Run tests", "execute tests", "check if tests pass", "show test results"Runningworkflows/running/workflow.md
"Fix tests", "debug tests", "tests are failing", "why is this test broken?"Debuggingworkflows/debugging/workflow.md
"Speed up tests", "optimize tests", "tests are slow", "fix open handles"Optimizingworkflows/optimizing/workflow.md

Workflow Execution Protocol

  1. ALWAYS load the workflow file first - Read the full workflow before taking action
  2. Follow each step in order - Complete checkpoints before proceeding
  3. Load knowledge files as directed - Each workflow specifies which references/ files to read
  4. Verify compliance after completion - Re-read relevant reference files to ensure quality

Knowledge Base Structure

references/
├── common/              # Core testing fundamentals
│   ├── knowledge.md     # Testing philosophy and test pyramid
│   ├── rules.md         # Mandatory testing rules (AAA, naming, coverage)
│   ├── assertions.md    # Assertion patterns and matchers
│   ├── examples.md      # Comprehensive examples by category
│   ├── detect-open-handles.md   # Open handle detection and cleanup
│   └── performance-optimization.md  # Jest runtime optimization
│
├── nestjs/              # NestJS component testing
│   ├── services.md      # Service/usecase testing patterns
│   ├── controllers.md   # Controller testing patterns
│   ├── guards.md        # Guard testing patterns
│   ├── interceptors.md  # Interceptor testing patterns
│   └── pipes-filters.md # Pipe and filter testing
│
├── mocking/             # Mock patterns and strategies
│   ├── deep-mocked.md   # @golevelup/ts-jest patterns
│   ├── jest-native.md   # Jest.fn, spyOn, mock patterns
│   └── factories.md     # Test data factory patterns
│
├── repository/          # Repository testing
│   ├── mongodb.md       # mongodb-memory-server patterns
│   └── postgres.md      # pg-mem patterns
│
├── kafka/               # NestJS Kafka microservices testing
│   └── kafka.md         # ClientKafka, @MessagePattern, @EventPattern handlers
│
└── redis/               # Redis cache testing
    └── redis.md         # Cache operations, health checks, graceful degradation

Quick Reference by Task

Write Unit Tests

  1. MANDATORY: Read references/common/rules.md - AAA pattern, naming, coverage
  2. Read references/common/assertions.md - Assertion best practices
  3. Read component-specific files:

- Services: references/nestjs/services.md - Controllers: references/nestjs/controllers.md - Guards: references/nestjs/guards.md - Interceptors: references/nestjs/interceptors.md - Pipes/Filters: references/nestjs/pipes-filters.md

Setup Mocking

  1. Read references/mocking/deep-mocked.md - DeepMocked patterns
  2. Read references/mocking/jest-native.md - Native Jest patterns
  3. Read references/mocking/factories.md - Test data factories

Test Repositories

  1. MongoDB: references/repository/mongodb.md
  2. PostgreSQL: references/repository/postgres.md

Test Kafka (NestJS Microservices)

  • Read references/kafka/kafka.md - ClientKafka mocking, @MessagePattern/@EventPattern handlers, emit/send testing

Test Redis

  • Read references/redis/redis.md - Cache operations, health checks, graceful degradation

Examples

  • Read references/common/examples.md for comprehensive patterns

Optimize Test Performance

  1. Read references/common/performance-optimization.md - Worker config, caching, CI optimization
  2. Read references/common/detect-open-handles.md - Fix open handles preventing clean exit

Debug Open Handles

  • Read references/common/detect-open-handles.md - Detection commands, common handle types, cleanup patterns

Core Principles

0. Context Efficiency (Temp File Output)

ALWAYS redirect unit test output to temp files, NOT console. Test output can be verbose and bloats agent context.

IMPORTANT: Use unique session ID in filenames to prevent conflicts when multiple agents run.

# Initialize session (once at start of testing session)
export UT_SESSION=$(date +%s)-$$

# Standard pattern - redirect output to temp file (NO console output)
npm test > /tmp/ut-${UT_SESSION}-output.log 2>&1

# Read summary only (last 50 lines)
tail -50 /tmp/ut-${UT_SESSION}-output.log

# Get failure details
grep -B 2 -A 15 "FAIL\|✕" /tmp/ut-${UT_SESSION}-output.log

# Cleanup when done
rm -f /tmp/ut-${UT_SESSION}-*.log /tmp/ut-${UT_SESSION}-*.md

Temp Files (with ${UT_SESSION} unique per agent):

  • /tmp/ut-${UT_SESSION}-output.log - Full test output
  • /tmp/ut-${UT_SESSION}-failures.md - Tracking file for one-by-one fixing
  • /tmp/ut-${UT_SESSION}-debug.log - Debug runs
  • /tmp/ut-${UT_SESSION}-verify.log - Verification runs
  • /tmp/ut-${UT_SESSION}-coverage.log - Coverage output

1. AAA Pattern (Mandatory)

ALL unit tests MUST follow Arrange-Act-Assert:

it('should return user when found', async () => {
  // Arrange
  const userId = 'user-123';
  mockRepository.findById.mockResolvedValue({
    id: userId,
    email: 'test@example.com',
    name: 'Test User',
  });

  // Act
  const result = await target.getUser(userId);

  // Assert
  expect(result).toEqual({
    id: userId,
    email: 'test@example.com',
    name: 'Test User',
  });
  expect(mockRepository.findById).toHaveBeenCalledWith(userId);
});

2. Use target for SUT

Always name the system under test as target:

let target: UserService;
let mockRepository: DeepMocked<UserRepository>;

3. DeepMocked Pattern

Use @golevelup/ts-jest for type-safe mocks:

import { createMock, DeepMocked } from '@golevelup/ts-jest';

let mockService: DeepMocked<UserService>;

beforeEach(() => {
  mockService = createMock<UserService>();
});

4. Specific Assertions

Assert exact values, not just existence:

// WRONG
expect(result).toBeDefined();
expect(result.id).toBeDefined();

// CORRECT
expect(result).toEqual({
  id: 'user-123',
  email: 'test@example.com',
  name: 'Test User',
});

5. Mock All Dependencies

Mock external services, never real databases for unit tests:

// Unit Test: Mock repository
{ provide: UserRepository, useValue: mockRepository }

// Repository Test: Use in-memory database
const mongoServer = await createMongoMemoryServer();

Standard Test Template

import { Test, TestingModule } from '@nestjs/testing';
import { createMock, DeepMocked } from '@golevelup/ts-jest';
import { MockLoggerService } from 'src/shared/logger/services/mock-logger.service';

describe('UserService', () => {
  let target: UserService;
  let mockRepository: DeepMocked<UserRepository>;

  beforeEach(async () => {
    // Arrange: Create mocks
    mockRepository = createMock<UserRepository>();

    const module: TestingModule = await Test.createTestingModule({
      providers: [
        UserService,
        { provide: UserRepository, useValue: mockRepository },
      ],
    })
      .setLogger(new MockLoggerService())
      .compile();

    target = module.get<UserService>(UserService);
  });

  afterEach(() => {
    jest.clearAllMocks();
  });

  describe('getUser', () => {
    it('should return user when found', async () => {
      // Arrange
      mockRepository.findById.mockResolvedValue({
        id: 'user-123',
        email: 'test@example.com',
      });

      // Act
      const result = await target.getUser('user-123');

      // Assert
      expect(result).toEqual({ id: 'user-123', email: 'test@example.com' });
    });

    it('should throw NotFoundException when user not found', async () => {
      // Arrange
      mockRepository.findById.mockResolvedValue(null);

      // Act & Assert
      await expect(target.getUser('invalid')).rejects.toThrow(NotFoundException);
    });
  });
});

Test Coverage Requirements

CategoryPriorityDescription
Happy pathMANDATORYValid inputs producing expected outputs
Edge casesMANDATORYEmpty arrays, null values, boundaries
Error casesMANDATORYNot found, validation failures
Exception behaviorMANDATORYCorrect type, error code, message
Business rulesMANDATORYDomain logic, calculations
Input validationMANDATORYInvalid inputs, type mismatches

Coverage Target: 80%+ for new code


Failure Resolution Protocol

CRITICAL: Fix ONE test at a time. NEVER run full suite repeatedly while fixing.

When unit tests fail:

  1. Initialize session (once at start): export UT_SESSION=$(date +%s)-$$
  2. Create tracking file: /tmp/ut-${UT_SESSION}-failures.md with all failing tests
  3. Select ONE failing test - work on only this test
  4. Run ONLY that test (never full suite): npm test -- -t "test name" > /tmp/ut-${UT_SESSION}-debug.log 2>&1 tail -50 /tmp/ut-${UT_SESSION}-debug.log
  5. Fix the issue - analyze error, make targeted fix
  6. Verify fix - run same test 3-5 times: for i in {1..5}; do npm test -- -t "test name" > /tmp/ut-${UT_SESSION}-run$i.log 2>&1 && echo "Run $i: PASS" || echo "Run $i: FAIL"; done
  7. Mark as FIXED in tracking file
  8. Move to next failing test - repeat steps 3-7
  9. Run full suite ONLY ONCE after ALL individual tests pass
  10. Cleanup: rm -f /tmp/ut-${UT_SESSION}-*.log /tmp/ut-${UT_SESSION}-*.md

WHY: Running full suite wastes time and context. Each failing test pollutes output, making debugging harder.


Naming Conventions

Test Files

  • Pattern: *.spec.ts
  • Location: Co-located with source file

Test Structure

describe('ClassName', () => {
  describe('methodName', () => {
    it('should [expected behavior] when [condition]', () => {});
  });
});

Variable Names

VariableConvention
SUTtarget
Mocksmock prefix (mockRepository, mockService)
Mock TypeDeepMocked<T>

What NOT to Unit Test

Do NOT create unit tests for:

  • Interfaces - Type definitions only, no runtime behavior
  • Enums - Static value mappings, no logic to test
  • Constants - Static values, no behavior
  • Type aliases - Type definitions only
  • Plain DTOs - Data structures without logic

Only test files containing executable logic (classes with methods, functions with behavior).


Anti-Patterns to Avoid

Don'tWhyDo Instead
Assert only existenceDoesn't catch wrong valuesAssert specific values
Conditional assertionsNon-deterministicSeparate test cases
Test private methodsCouples to implementationTest via public interface
Share state between testsCauses flaky testsFresh setup in beforeEach
Mock repositories in servicesTests implementationMock interfaces
Skip mock verificationDoesn't validate behaviorVerify mock calls
Test interfaces/enums/constantsNo behavior to testSkip these files

Checklist

Setup:

  • Use target for system under test
  • Use mock prefix for all mocks
  • Use DeepMocked<T> type
  • Include .setLogger(new MockLoggerService())
  • Follow AAA pattern with comments
  • Reset mocks in afterEach

Coverage:

  • Happy path tests for all public methods
  • Edge case tests (empty, null, boundaries)
  • Error case tests (not found, validation failures)
  • Exception type and error code verification
  • Mock call verification (parameters + count)

Quality:

  • 80%+ coverage on new code
  • No assertions on log calls
  • No test interdependence
  • Tests fail when any field differs

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.7%
按下载量换算802

Claude

26.8%
按下载量换算570

Cursor

18.51%
按下载量换算394

Gemini CLI

8.29%
按下载量换算176

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills