DOM Testing Library

Simple, framework-agnostic DOM query utilities that test your UI the way real users interact with it.

Library
npm
v10.4.1
3,334stars
MIT License

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
66/100Good
Development Activity48
Maintenance44
Community72
Maturity60
Momentum40

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
83/100Excellent
Architecture85
Code Quality90
Innovation78
Learning Curve80

DOM Testing Library is the framework-agnostic engine behind the entire Testing Library family (React Testing Library, Vue Testing Library, Angular Testing Library, and more). Rather than reaching into component internals or instance state, it queries plain DOM nodes the same way a person would find them: by visible text, label, placeholder, role, or test id. Its guiding principle — “the more your tests resemble the way your software is used, the more confidence they can give you” — pushes teams away from brittle, implementation-coupled tests and toward tests that survive refactors.

At its core sit a small set of composable primitives: getByX/queryByX/findByX/getAllByX query variants generated from shared helpers in query-helpers.ts, an accessibility-first getByRole implementation that mirrors how screen readers see the page, and an async waitFor/waitForElementToBeRemoved pair built on MutationObserver (with a Jest fake-timers-aware code path) for asserting on DOM changes without arbitrary sleeps. A configure() API lets consumers override the test-id attribute, default query behavior, and error formatting, which is exactly the extension point React/Vue/Svelte Testing Library build on top of.

With roughly 70 million weekly npm downloads for this package alone and adoption across nearly every major JS UI framework’s own testing tooling, it has become the de facto standard for behavior-driven, user-centric UI testing in the JavaScript ecosystem.

What You Get

  • A full family of getBy/queryBy/findBy/getAllBy/queryAllBy/findAllBy query variants for text, label text, placeholder text, alt text, title, display value, test id, and ARIA role
  • An accessibility-aware getByRole query that computes implicit ARIA roles and accessible names the way assistive technology does
  • Async waitFor and waitForElementToBeRemoved helpers built on MutationObserver, with correct behavior under both real and Jest fake timers
  • A global configure() API for setting the test-id attribute, default query behavior (e.g. hidden, exact, custom text normalizers), and custom error formatting
  • Built-in query suggestions that nudge you toward higher-priority, more accessible queries (e.g. suggesting getByRole over getByTestId)
  • A prettyDOM/logRoles debugging toolkit that prints a readable DOM snapshot or the accessibility tree straight into failed-test output

Common Use Cases

  • Writing framework-agnostic tests for vanilla JS or web-component UIs without pulling in a component-testing wrapper
  • Serving as the underlying query/assertion engine for React Testing Library, Vue Testing Library, Angular Testing Library, and similar framework adapters
  • Asserting that async UI updates (loading spinners disappearing, content appearing after a fetch) have completed, via waitFor/waitForElementToBeRemoved instead of manual timeouts
  • Auditing and testing accessibility by querying elements the same way assistive technology perceives them, via getByRole and getRoles/logRoles
  • Migrating test suites away from snapshot- or selector-based testing toward behavior-driven tests that don’t break on internal refactors

Under The Hood

Architecture The library is organized as a small, composable core rather than a monolith: src/query-helpers.ts exposes buildQueries, a factory that takes a single queryAllBy* implementation and mechanically derives the queryBy/getBy/getAllBy/findBy/findAllBy variants (the findBy* variants are produced by wrapping the getter in waitFor from src/wait-for.js), so every query type in src/queries/ (text, role, label-text, placeholder-text, alt-text, title, display-value, test-id) is generated from one shared implementation instead of being hand-duplicated six times over. get-queries-for-element.js binds the whole query set to a given container to power both the top-level screen object and the within() helper, so scoping queries to a subtree is structurally the same operation as querying the whole document. Global behavior (test-id attribute name, error formatting, async timeouts, suggestion opt-in) flows through a single mutable config object in config.ts, read via getConfig() everywhere queries or waitFor need a default — the one clear central dependency in an otherwise flat, function-composition-heavy design.

Tech Stack The package is written in a mix of plain JavaScript and TypeScript (.ts files hold the newer, more heavily-typed modules like query-helpers.ts, config.ts, and matches.ts), built via kcd-scripts (a shared Babel/Rollup/Jest toolchain wrapper from the same maintainer ecosystem as this project) into CJS, ESM, and UMD bundles declared under main/module/umd:main in package.json. Runtime dependencies are deliberately minimal — aria-query and dom-accessibility-api power the ARIA-role and accessible-name computation behind getByRole, pretty-format and picocolors drive the colorized DOM snapshots used in error messages, and lz-string compresses cached data for repeated snapshot diffing. Type declarations are hand-maintained under types/ rather than machine-generated, giving consumers curated public-facing types independent of internal implementation types.

Code Quality The project has an extensive Jest test suite under src/__tests__ (dozens of spec files, one roughly per source module, e.g. role.js, wait-for.js, queries.find.js, suggestions.js) plus a parallel src/__node_tests__ suite and split tests/jest.config.dom.js / jest.config.node.js projects to exercise both jsdom and plain Node environments — a testing posture unusually thorough even by this ecosystem’s standards. Linting and formatting are enforced via the shared kcd-scripts ESLint/Prettier config with project-specific rule overrides in package.json, and CI (.github/workflows/validate.yml) runs validation on every push. Error handling favors explicit, purpose-built TestingLibraryElementError instances carrying a pretty-printed DOM snapshot rather than swallowing failures, and naming is consistent throughout (queryAllBy*queryBy*getBy*findBy* derivations follow the same pattern in every query family).

What Makes It Unique What differentiates this library from ad hoc DOM query helpers is that its queries are deliberately biased toward accessibility semantics rather than raw selectors: getByRole reconstructs the ARIA role and accessible name the way a screen reader would, and the built-in suggestion system actively warns when a test uses a lower-priority query (like a test id) where a higher-priority, more accessible one (like a role or label) would have matched — encoding an opinionated testing philosophy directly into the tool’s runtime behavior rather than leaving it to a style guide. Combined with its role as the shared foundation reused verbatim by nearly every major framework’s own testing-library package, this makes it less a single tool and more a de facto specification for user-centric UI testing across the JS ecosystem.

Used by 83 apps in this directory

TypeScript
76%
AGPL 3.0

Abby

Developer Tools · Product Management

166

Statically typed feature flags, remote config, and A/B testing with framework-native SDKs for TypeScript teams.

View details
30
Repo Health
70
Technical
63
Dependency
Built with
TypeScript76%
MDX18%
Updated 1 years ago
TypeScript
94%
MIT

Actual

Invoicing Finance

28,593

Local-first personal finance with envelope budgeting, end-to-end encryption, and multi-device sync — no subscription required.

View details
93
Repo Health
85
Technical
77
Dependency
Built with
TypeScript94%
Updated today
TypeScript
87%
Other

AFFiNE

Productivity · Project Management · Note Taking

72,238

Write, draw, and plan in one infinite canvas — the open-source alternative to Notion and Miro that keeps your data yours.

View details
91
Repo Health
87
Technical
67
Dependency
Built with
TypeScript87%
Updated yesterday
Python
98%
MIT

Agent Lightning

AI Development

18,000

A Microsoft-built training framework that optimizes AI agents with reinforcement learning, automatic prompt optimization, or supervised fine-tuning — with near-zero code changes to your existing agent, in any framework.

View details
83
Repo Health
68
Technical
70
Dependency
Built with
Python98%
Updated 5 days ago
TypeScript
88%
MIT

Amical

Note Taking · AI Assistants

1,522

Local-first AI dictation that understands your active app — private, offline, and built for speed.

View details
81
Repo Health
82
Technical
67
Dependency
Built with
TypeScript88%
Updated 2 days ago
TypeScript
53%
MIT

Anarlog

Note Taking · AI Assistants · Productivity

9,252

Anarlog is an open-source, local-first AI meeting notetaker that records, transcribes, and summarizes meetings entirely on your device — no cloud lock-in, no mandatory account, and every note saved as a plain markdown file you own forever.

View details
86
Repo Health
77
Technical
68
Dependency
Built with
TypeScript53%
Rust35%
Updated today
Go
60%
Apache 2.0

Apache Answer

Community

15,665

Open-source Q&A platform for communities, help centers, and knowledge bases with AI assistant and plugin extensibility

View details
83
Repo Health
78
Technical
68
Dependency
Built with
Go60%
TypeScript36%
Updated 1 weeks ago
Go
85%
Apache 2.0

Argo Workflows

Devops · Data Engineering

16,956

The most popular Kubernetes-native workflow engine for orchestrating containerized DAGs, ML pipelines, CI/CD, and parallel batch jobs at scale.

View details
96
Repo Health
90
Technical
67
Dependency
Built with
Go85%
TypeScript11%
Updated yesterday
Python
67%
Other

AutoGPT

Automation · Productivity · AI Assistants

187,177

Build, deploy, and run autonomous AI agents that automate complex multi-step workflows using a visual block-based graph editor.

View details
93
Repo Health
78
Technical
66
Dependency
Built with
Python67%
TypeScript32%
Updated today

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search