DOM Testing Library
Simple, framework-agnostic DOM query utilities that test your UI the way real users interact with it.
Repository Health
Technical Analysis
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/findAllByquery variants for text, label text, placeholder text, alt text, title, display value, test id, and ARIA role - An accessibility-aware
getByRolequery that computes implicit ARIA roles and accessible names the way assistive technology does - Async
waitForandwaitForElementToBeRemovedhelpers built onMutationObserver, 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
getByRoleovergetByTestId) - A
prettyDOM/logRolesdebugging 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/waitForElementToBeRemovedinstead of manual timeouts - Auditing and testing accessibility by querying elements the same way assistive technology perceives them, via
getByRoleandgetRoles/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
Abby
Developer Tools · Product Management
Statically typed feature flags, remote config, and A/B testing with framework-native SDKs for TypeScript teams.
Actual
Invoicing Finance
Local-first personal finance with envelope budgeting, end-to-end encryption, and multi-device sync — no subscription required.
AFFiNE
Productivity · Project Management · Note Taking
Write, draw, and plan in one infinite canvas — the open-source alternative to Notion and Miro that keeps your data yours.
Agent Lightning
AI Development
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.
Amical
Note Taking · AI Assistants
Local-first AI dictation that understands your active app — private, offline, and built for speed.
Anarlog
Note Taking · AI Assistants · Productivity
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.
Apache Answer
Community
Open-source Q&A platform for communities, help centers, and knowledge bases with AI assistant and plugin extensibility
Argo Workflows
Devops · Data Engineering
The most popular Kubernetes-native workflow engine for orchestrating containerized DAGs, ML pipelines, CI/CD, and parallel batch jobs at scale.
AutoGPT
Automation · Productivity · AI Assistants
Build, deploy, and run autonomous AI agents that automate complex multi-step workflows using a visual block-based graph editor.