Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
callstackincubator avatar

React Native Testing

  • 14 installs
  • 1.6k repo stars
  • Updated July 25, 2026
  • callstackincubator/agent-skills

This is a copy of react-native-testing by callstack - installs and ranking accrue to the original listing.

react-native-testing is a Claude skill that guides writing React Native component tests using React Native Testing Library v13 and v14, covering queries, matchers, userEvent, and async patterns.

About

This skill is a guide for writing React Native component tests with React Native Testing Library (RNTL) v13 and v14. It covers render, the screen API, query variants, Jest matchers, userEvent versus fireEvent, and async patterns like findBy and waitFor. It detects the installed RNTL version and loads the matching v13 or v14 reference. A developer uses it when writing, reviewing, or fixing RN component tests.

  • Guide for writing React Native component tests with React Native Testing Library v13 and v14
  • Covers render, screen, queries, Jest matchers, userEvent, fireEvent, waitFor, and async patterns
  • Version detection loads v13 (React 18, sync) or v14 (React 19+, async) reference files

React Native Testing by the numbers

  • 14 all-time installs (skills.sh)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

react-native-testing capabilities & compatibility

Free; no API keys required.

Capabilities
testing · component testing · test writing
Use cases
testing
Pricing
Free
From the docs

What react-native-testing says it does

Write tests using React Native Testing Library (RNTL) v13 and v14 (`@testing-library/react-native`).
SKILL.md
Use `getByRole` first** with `{ name: '...' }` option
SKILL.md
**Use `findBy*`** for async elements, NOT `waitFor` + `getBy*`
SKILL.md
npx skills add https://github.com/callstackincubator/agent-skills --skill react-native-testing

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs14
repo stars1.6k
Last updatedJuly 25, 2026
Repositorycallstackincubator/agent-skills

What it does

Write or fix React Native component tests with RNTL v13/v14 using correct queries, matchers, and async patterns.

Who is it for?

Authoring or fixing RN component tests against the correct RNTL v13 or v14 API.

Skip if: Non-React-Native testing, since it is specific to @testing-library/react-native.

When should I use this skill?

When writing, reviewing, or fixing React Native component tests, or when files import @testing-library/react-native.

What you get

Correct, version-appropriate React Native component tests using screen, getByRole-first queries, userEvent, and findBy for async.

  • react native component tests
  • corrected query and matcher usage

By the numbers

  • supports RNTL v13 and v14
  • 11 numbered rules

Files

SKILL.mdMarkdownGitHub ↗

RNTL Test Writing Guide

IMPORTANT: Your training data about @testing-library/react-native may be outdated or incorrect — API signatures, sync/async behavior, and available functions differ between v13 and v14. Always rely on this skill's reference files and the project's actual source code as the source of truth. Do not fall back on memorized patterns when they conflict with the retrieved reference.

Version Detection

Check @testing-library/react-native version in the user's package.json:

  • v14.x → load references/api-reference-v14.md (React 19+, async APIs, test-renderer)
  • v13.x → load references/api-reference-v13.md (React 18+, sync APIs, react-test-renderer)

Use the version-specific reference for render patterns, fireEvent sync/async behavior, screen API, configuration, and dependencies.

Query Priority

Use in this order: getByRole > getByLabelText > getByPlaceholderText > getByText > getByDisplayValue > getByTestId (last resort).

Query Variants

VariantUse caseReturnsAsync
getBy*Element must existelement instance (throws)No
getAllBy*Multiple must existelement instance[] (throws)No
queryBy*Check non-existence ONLYelement instance \null
queryAllBy*Count elementselement instance[]No
findBy*Wait for elementPromise<element instance>Yes
findAllBy*Wait for multiplePromise<element instance[]>Yes

Interactions

Prefer userEvent over fireEvent. userEvent is always async.

const user = userEvent.setup();
await user.press(element); // full press sequence
await user.longPress(element, { duration: 800 }); // long press
await user.type(textInput, 'Hello'); // char-by-char typing
await user.clear(textInput); // clear TextInput
await user.paste(textInput, 'pasted text'); // paste into TextInput
await user.scrollTo(scrollView, { y: 100 }); // scroll

fireEvent — use only when userEvent doesn't support the event. See version-specific reference for sync/async behavior:

fireEvent.press(element);
fireEvent.changeText(textInput, 'new text');
fireEvent(element, 'blur');

Assertions (Jest Matchers)

Available automatically with any @testing-library/react-native import.

MatcherUse for
toBeOnTheScreen()Element exists in tree
toBeVisible()Element visible (not hidden/display:none)
toBeEnabled() / toBeDisabled()Disabled state via aria-disabled
toBeChecked() / toBePartiallyChecked()Checked state
toBeSelected()Selected state
toBeExpanded() / toBeCollapsed()Expanded state
toBeBusy()Busy state
toHaveTextContent(text)Text content match
toHaveDisplayValue(value)TextInput display value
toHaveAccessibleName(name)Accessible name
toHaveAccessibilityValue(val)Accessibility value
toHaveStyle(style)Style match
toHaveProp(name, value?)Prop check (last resort)
toContainElement(el)Contains child element
toBeEmptyElement()No children

Rules

1. Use `screen` for queries, not destructuring from render() 2. Use `getByRole` first with { name: '...' } option 3. *Use `queryBy ONLY** for .not.toBeOnTheScreen() checks 4. **Use findBy` for async elements, NOT `waitFor` + `getBy 5. **Never put side-effects in waitFor** (no fireEvent/userEvent inside) 6. **One assertion per waitFor** 7. **Never pass empty callbacks to waitFor** 8. **Don't wrap in act()** - render, fireEvent, userEvent handle it 9. **Don't call cleanup()** - automatic after each test 10. **Prefer ARIA props** (role, aria-label, aria-disabled) over legacy accessibility` props 11. Use RNTL matchers* over raw prop assertions

*ByRole Quick Reference

Common roles: button, text, heading (alias: header), searchbox, switch, checkbox, radio, img, link, alert, menu, menuitem, tab, tablist, progressbar, slider, spinbutton, timer, toolbar.

getByRole options: { name, disabled, selected, checked, busy, expanded, value: { min, max, now, text } }.

For *ByRole to match, the element must be an accessibility element:

  • Text, TextInput, Switch are by default
  • View needs accessible={true} (or use Pressable/TouchableOpacity)

waitFor

// Correct: action first, then wait for result
fireEvent.press(button);
await waitFor(() => {
  expect(screen.getByText('Result')).toBeOnTheScreen();
});

// Better: use findBy* instead
fireEvent.press(button);
expect(await screen.findByText('Result')).toBeOnTheScreen();

Options: waitFor(cb, { timeout: 1000, interval: 50 }). Works with Jest fake timers automatically.

Fake Timers

Recommended with userEvent (press/longPress involve real durations):

jest.useFakeTimers();

test('with fake timers', async () => {
  const user = userEvent.setup();
  render(<Component />);
  await user.press(screen.getByRole('button'));
  // ...
});

Custom Render

Wrap providers using wrapper option:

function renderWithProviders(ui: React.ReactElement) {
  return render(ui, {
    wrapper: ({ children }) => (
      <ThemeProvider>
        <AuthProvider>{children}</AuthProvider>
      </ThemeProvider>
    ),
  });
}

References

  • v13 API Reference — Complete v13 API: sync render, queries, matchers, userEvent, React 19 compat
  • v14 API Reference — Complete v14 API: async render, queries, matchers, userEvent, migration
  • Anti-Patterns — Common mistakes to avoid

Related skills

Testing & QAtestingfrontend

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.