Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

jestjest 开发

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

222

周安装

9

GitHub Stars

6

下载量

70
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ghosttypes/ff-5mp-api-ts --skill jest

简介

Jest 开发技能辅助 API 设计和接口文档生成,支持字段命名和结构检查。

  • 适用于服务集成说明和联调支持等前后端协作场景。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令集成到开发环境。
  • 使用时需从现有代码中提取事实,避免生成与实际不符的接口定义。
  • jest 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Jest Testing Framework

Overview

Jest is a delightful JavaScript testing framework with a focus on simplicity. It works with projects using Babel, TypeScript, Node, React, Angular, Vue, and more.

Quick Start

Installation:

npm install --save-dev jest

Add to package.json:

{
  "scripts": {
    "test": "jest"
  }
}

First test (sum.test.js):

const sum = require('./sum');

test('adds 1 + 2 to equal 3', () => {
  expect(sum(1, 2)).toBe(3);
});

Run tests:

npm test

Basic Test Structure

Test Blocks

  • test(name, fn) - Single test
  • describe(name, fn) - Groups related tests
  • only - Run only this test: test.only(), describe.only()
  • skip - Skip this test: test.skip(), describe.skip()
describe('Math operations', () => {
  test('adds 1 + 2 to equal 3', () => {
    expect(sum(1, 2)).toBe(3);
  });

  test('multiplies 3 * 4 to equal 12', () => {
    expect(multiply(3, 4)).toBe(12);
  });
});

Common Matchers

Exact Equality

// Primitive values
expect(2 + 2).toBe(4);

// Objects and arrays (deep equality)
expect({ one: 1, two: 2 }).toEqual({ one: 1, two: 2 });

Truthiness

toBeNull()           // matches only null
toBeUndefined()      // matches only undefined
toBeDefined()        // opposite of toBeUndefined
toBeTruthy()        // matches if statement truthy
toBeFalsy()          // matches if statement falsy

Numbers

toBeGreaterThan(3)
toBeGreaterThanOrEqual(3.5)
toBeLessThan(5)
toBeLessThanOrEqual(4.5)
toBeCloseTo(0.3)     // floating point

Strings

toMatch(/stop/)

Arrays

toContain('milk')

Negation

expect(2 + 2).not.toBe(5);

Testing Async Code

Promises

// Return the promise
test('the data is peanut butter', () => {
  return fetchData().then(data => {
    expect(data).toBe('peanut butter');
  });
});

// Use .resolves
test('the data is peanut butter', () => {
  return expect(fetchData()).resolves.toBe('peanut butter');
});

// Use .rejects
test('the fetch fails', () => {
  return expect(fetchData()).rejects.toMatch('error');
});

Async/Await

test('the data is peanut butter', async () => {
  const data = await fetchData();
  expect(data).toBe('peanut butter');
});

test('the fetch fails', async () => {
  await expect(fetchData()).rejects.toMatch('error');
});

Callbacks

test('the data is peanut butter', done => {
  function callback(data) {
    expect(data).toBe('peanut butter');
    done();
  }
  fetchDataCallback(callback);
});

Setup and Teardown

Repeating Setup (Each Test)

beforeEach(() => {
  initializeCityDatabase();
});

afterEach(() => {
  clearCityDatabase();
});

One-Time Setup

beforeAll(() => {
  return initializeCityDatabase();
});

afterAll(() => {
  return clearCityDatabase();
});

Scoping

Hooks in describe blocks apply only to tests within that block. Outer hooks run before inner hooks.

describe('outer', () => {
  beforeAll(() => { /* runs first */ });
  beforeEach(() => { /* runs before each test */ });

  describe('inner', () => {
    beforeAll(() => { /* runs second */ });
    beforeEach(() => { /* runs before each test in inner */ });
  });
});

Mocking

Mock Functions

const mockFn = jest.fn(x => 42 + x);

// Inspect calls
expect(mockFn.mock.calls.length).toBe(2);
expect(mockFn.mock.calls[0][0]).toBe(0);

// Return values
mockFn.mockReturnValueOnce(10).mockReturnValue(true);

// Implementation
mockFn.mockImplementation(() => 'default');

Module Mocking

import axios from 'axios';
jest.mock('axios');

// Mock resolved value
axios.get.mockResolvedValue({ data: users });

// Mock implementation
axios.get.mockImplementation(() => Promise.resolve(resp));

Mock Matchers

expect(mockFunc).toHaveBeenCalled();
expect(mockFunc).toHaveBeenCalledWith(arg1, arg2);
expect(mockFunc).toHaveBeenLastCalledWith(arg1, arg2);

Snapshot Testing

Basic Snapshot

test('renders correctly', () => {
  const tree = renderer.create(<Link />).toJSON();
  expect(tree).toMatchSnapshot();
});

Update Snapshots

jest --updateSnapshot
# or
jest -u

Inline Snapshots

test('renders correctly', () => {
  const tree = renderer.create(<Link />).toJSON();
  expect(tree).toMatchInlineSnapshot();
});

Property Matchers

expect(user).toMatchSnapshot({
  createdAt: expect.any(Date),
  id: expect.any(Number),
});

Configuration

Generate Config

npm init jest@latest

Config File (jest.config.js)

module.exports = {
  // Test environment
  testEnvironment: 'node', // or 'jsdom' for React

  // Test file patterns
  testMatch: [
    '**/__tests__/**/*.[jt]s?(x)',
    '**/?(*.)+(spec|test).[jt]s?(x)'
  ],

  // Coverage
  collectCoverageFrom: ['src/**/*.{js,jsx}'],
  coverageDirectory: 'coverage',

  // Setup files
  setupFilesAfterEnv: ['<rootDir>/src/setupTests.js'],

  // Transforms (Babel, TypeScript)
  transform: {
    '^.+\\.(js|jsx)$': 'babel-jest',
  },

  // Module mocking
  moduleNameMapper: {
    '\\.(css|less)$': 'identity-obj-proxy',
  },
};

TypeScript

npm install --save-dev ts-jest @types/jest
// jest.config.js
module.exports = {
  preset: 'ts-jest',
};

React

npm install --save-dev @testing-library/react @testing-library/jest-dom jest-environment-jsdom
// jest.config.js
module.exports = {
  testEnvironment: 'jsdom',
  setupFilesAfterEnv: ['<rootDir>/src/setupTests.js'],
};
// src/setupTests.js
import '@testing-library/jest-dom';

CLI Options

jest                    # Run all tests
jest --watch            # Watch mode
jest --coverage         # Generate coverage
jest --updateSnapshot   # Update snapshots
jest --verbose          # Detailed output
jest --findRelatedTests # Test changed files

Framework-Specific Testing

React (see TutorialReact.md)

import { render, screen } from '@testing-library/react';

test('renders button', () => {
  render(<Button>Click me</Button>);
  expect(screen.getByText('Click me')).toBeInTheDocument();
});

React Native (see TutorialReactNative.md)

Use react-test-renderer for snapshot testing.

Async Patterns (see TutorialAsync.md)

Comprehensive examples for promises, async/await, callbacks, and timers.

Best Practices

  1. Descriptive test names - "should return user when id exists" vs "returns user"
  2. One assertion per test - Keep tests focused
  3. Arrange-Act-Assert - Structure tests clearly
  4. Mock external dependencies - Don't make real API calls
  5. Test behavior, not implementation - Focus on what, not how
  6. Use setup/teardown - Avoid code duplication
  7. Keep tests deterministic - No random data or dates (mock them)

Resources

Setup & Configuration

  • GettingStarted.md - Installation, Babel, TypeScript, ESLint setup
  • Configuration.md - Complete config options reference
  • CLI.md - All command-line options
  • EnvironmentVariables.md - Environment setup
  • TestingFrameworks.md - Framework-specific setup guides

Core Testing

  • UsingMatchers.md - Common matchers (toBe, toEqual, truthiness, numbers, arrays)
  • TestingAsyncCode.md - Promises, async/await, callbacks, timers
  • SetupAndTeardown.md - beforeEach, afterEach, beforeAll, afterAll, scoping

Mocking

  • MockFunctions.md - Mock functions,.mock property, return values
  • MockFunctionAPI.md - Complete mock API reference
  • ManualMocks.md - Manual module mocks
  • Es6ClassMocks.md - ES6 class mocking
  • BypassingModuleMocks.md - Bypassing module mocks

API References

  • ExpectAPI.md - Complete expect() matcher reference (63k+ bytes)
  • GlobalAPI.md - describe, test, it, skip, only, etc. (35k+ bytes)
  • JestObjectAPI.md - Jest object API (36k+ bytes)

Advanced Features

  • SnapshotTesting.md - Snapshot testing, inline snapshots, property matchers
  • TimerMocks.md - Fake timers, timer mocking APIs
  • CodeTransformation.md - Custom transforms
  • ECMAScriptModules.md - ESM support
  • WatchPlugins.md - Custom watch plugins

Framework Tutorials

  • TutorialReact.md - React testing with @testing-library/react
  • TutorialReactNative.md - React Native testing
  • TutorialAsync.md - Async patterns and examples
  • TutorialjQuery.md - jQuery testing

Integration Guides

  • Webpack.md - Webpack integration
  • Puppeteer.md - Puppeteer integration
  • DynamoDB.md - DynamoDB testing
  • MongoDB.md - MongoDB testing

Meta & Support

  • Architecture.md - Jest architecture
  • Troubleshooting.md - Common issues and solutions
  • MigrationGuide.md - Upgrading guide
  • JestPlatform.md - Jest platform packages
  • JestCommunity.md - Community resources
  • MoreResources.md - Additional learning resources

Assets

  • assets/configs/ - Configuration templates (basic, TypeScript, Babel, React, package.json)
  • assets/test-templates/ - Test file templates (basic, async, mock, snapshot, setup, react)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.87%
按下载量换算24

Claude

30.92%
按下载量换算22

Cursor

17.4%
按下载量换算12

Gemini CLI

9.45%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/ghosttypes/ff-5mp-api-ts --skill jest 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills