Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

react-native-harnessReact native harness 搜索

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

349

周安装

15

GitHub Stars

275

下载量

122
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/callstackincubator/react-native-harness --skill react-native-harness

简介

用于辅助 React Native 项目的测试与调试支持。

  • 适合搜索测试策略与调试工具的使用方法。
  • 可生成或审查测试用例与调试脚本。react-native-harness 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用时需结合项目现有测试框架与构建方式。
  • 涉及代码改动时应配合本地测试与构建检查确认效果。

SKILL.md

React Native Harness

React Native Harness tests use Jest-style APIs but run in the app or browser environment instead of plain Node.

Test File Conventions

  • Use .harness.[jt]s or .harness.[jt]sx test files.
  • Import test APIs from react-native-harness.
  • Put tests inside describe(...) blocks.
  • Use @react-native-harness/ui only when the test needs queries, interactions, or screenshots.

Default Test Shape

import { describe, test, expect } from 'react-native-harness';

describe('Feature name', () => {
  test('does something', () => {
    expect(true).toBe(true);
  });
});

Prefer these public APIs when writing tests:

  • Test structure: describe, test, it, beforeEach, afterEach, beforeAll, afterAll
  • Focus and pending helpers: test.skip, test.only, test.todo, describe.skip, describe.only
  • Assertions: expect
  • Mocking and spying: fn, spyOn, clearAllMocks, resetAllMocks, restoreAllMocks
  • Module mocking: mock, requireActual, unmock, resetModules
  • Async polling: waitFor, waitUntil

Test functions may be async. If a test returns a promise, Harness waits for it; if that promise rejects, the test fails.

Mocking And Spying

Use fn() for standalone mock functions and spyOn() for existing methods.

  • expect follows Vitest's API.
  • expect.soft(...) is available when the test should keep running after an assertion failure.
  • clearAllMocks() clears call history but keeps implementations.
  • resetAllMocks() clears call history and resets mock implementations.
  • restoreAllMocks() restores spied methods to their original implementations.

Typical cleanup:

import { afterEach, clearAllMocks } from 'react-native-harness';

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

Module Mocking

Use module mocking when the test must replace an entire module or specific exports.

  • mock(moduleId, factory) registers a lazy mock factory.
  • requireActual(moduleId) is the safe path for partial mocks.
  • unmock(moduleId) removes a mock for one module.
  • resetModules() clears module mocks and module cache state.

Recommended pattern:

import {
  afterEach,
  describe,
  expect,
  mock,
  requireActual,
  resetModules,
  test,
} from 'react-native-harness';

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

describe('partial mock', () => {
  test('overrides one export but keeps the rest', () => {
    mock('react-native', () => {
      const actual = requireActual('react-native');
      const proto = Object.getPrototypeOf(actual);
      const descriptors = Object.getOwnPropertyDescriptors(actual);
      const mocked = Object.create(proto, descriptors);

      Object.defineProperty(mocked, 'Platform', {
        get() {
          return {
            ...actual.Platform,
            OS: 'mockOS',
          };
        },
      });

      return mocked;
    });

    const rn = require('react-native');
    expect(rn.Platform.OS).toBe('mockOS');
  });
});
  • Always clean up module mocks with resetModules() in afterEach when tests mock modules.
  • Use requireActual() for partial mocks so unrelated exports stay real.
  • For react-native, preserve property descriptors when partially mocking to avoid triggering lazy getters too early.
  • Remember that module factories are evaluated when the module is first required.

Async Behavior

Use:

  • waitFor(...) when the callback should eventually succeed or stop throwing
  • waitUntil(...) when the callback should eventually return a truthy value

Both support timeout control. Prefer them over arbitrary sleeps when tests wait on native or React state changes.

UI Testing

UI testing is opt-in and uses render(...) from react-native-harness together with @react-native-harness/ui.

Use render(...) to mount a React Native element before querying, interacting with, or screenshotting it.

  • render(...) is async
  • rerender(...) is async
  • unmount() is optional because cleanup happens automatically after each test
  • wrapper is the right tool for providers and shared context
  • Rendered UI appears as an overlay in the real environment, not as an in-memory tree
  • Only one rendered component can be visible at a time

Use it when the task requires:

  • render(...) or rerender(...)
  • screen.findByTestId(...)
  • screen.findAllByTestId(...)
  • screen.queryByTestId(...)
  • screen.queryAllByTestId(...)
  • screen.findByAccessibilityLabel(...)
  • screen.findAllByAccessibilityLabel(...)
  • screen.queryByAccessibilityLabel(...)
  • screen.queryAllByAccessibilityLabel(...)
  • userEvent.press(...)
  • userEvent.type(...)
  • screenshots with screen.screenshot()
  • element screenshots with screen.screenshot(element)
  • image assertions with toMatchImageSnapshot(...)
  • Keep imports split correctly: core APIs from react-native-harness, UI APIs from @react-native-harness/ui.
  • Mention that @react-native-harness/ui requires installation, and native apps must be rebuilt after adding it.
  • toMatchImageSnapshot(...) needs a unique snapshot name.
  • If screenshotting elements that extend beyond screen bounds, call out disableViewFlattening: true in rn-harness.config.mjs.
  • On web, UI interactions and screenshots run through the web runner's Playwright-backed browser environment.

Setup Files

Harness follows two setup phases configured in jest.harness.config.mjs:

  • setupFiles: runs before the test framework is initialized. Use for early polyfills and globals. Do not use describe, test, expect, or hooks here.
  • setupFilesAfterEnv: runs after the test framework is ready. Use for global mocks, hooks, and matcher setup.

Recommended uses:

  • Early environment shims in setupFiles
  • Global afterEach, clearAllMocks, resetModules, and shared mocks in setupFilesAfterEnv

CLI And Execution Constraints

  • Harness wraps the Jest CLI.
  • Tests execute on one configured runner at a time.
  • Execution is serial for stability.
  • --harnessRunner <name> selects the runner.
  • Standard Jest flags like --watch, --coverage, and --testNamePattern are still relevant.
  • Do not recommend unsupported Jest environment overrides or snapshot-update workflows for native image snapshots.

For install, runner setup, and config files, read references/installation.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.72%
按下载量换算42

Claude

28.71%
按下载量换算35

Cursor

18.83%
按下载量换算23

Gemini CLI

9.2%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills