npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@atomic-testing/component-driver-astryx

v0.98.0

Published

Component driver for Astryx (@astryxdesign/core)

Readme

@atomic-testing/component-driver-astryx

Component drivers for Astryx, Meta's open-source, StyleX-based design system. Component drivers expose simple APIs for unit tests or end-to-end tests to interact with Astryx components—reading state and driving actions—so test engineers focus on test flows instead of the component internals.

The problem

Astryx styles components with StyleX, whose class names are build-time hashed and therefore are not stable test anchors. Astryx is ARIA-role-first: widgets expose a semantic role plus an accessible name (visible text or aria-label). The stable anchors are data-testid, role, and accessible name—never StyleX classes.

The solution

The drivers in this package locate Astryx components by those stable anchors and expose high-level interactions. Combined with a React adapter, the same scene definitions run across DOM (jsdom) and end-to-end (Playwright) tests.

Target package & version pin

This driver targets the published Astryx package @astryxdesign/core (the components live here; theme packages such as @astryxdesign/theme-neutral are separate). It is declared as a peer dependency pinned to ^0.1.1: consumers bring their own Astryx, and the caret on a 0.x release locks the 0.1 minor (>=0.1.1 <0.2.0)—the closest analogue to "pin a major" while Astryx is pre-1.0. Astryx peer-requires React ≥19.

Astryx forks (-vN) are deferred: a single package tracks one 0.x minor until a breaking Astryx release warrants a versioned fork.

Installation

npm install @atomic-testing/core @atomic-testing/react-19 \
  @atomic-testing/component-driver-html @atomic-testing/component-driver-astryx \
  @astryxdesign/core --save-dev

Refer to the documentation for usage patterns and examples.

Drivers

Wave 1 — buttons, inputs, toggles and the structural/feedback primitives around them. Each driver locates its component by data-testid, role, or accessible name (never a StyleX class) and exposes high-level reads and interactions. Method details are in the API docs; anchoring rationale and any E2E-only behaviour live in each driver's source doc comment.

Buttons & actions

| Driver | Astryx component | Notes | | ------------------------- | ------------------- | -------------------------------------------------------------------------- | | ButtonDriver | Button | getLabel/isDisabled/isLoading; inherited click. | | IconButtonDriver | IconButton | Icon-only Button; getLabel reads the always-present aria-label. | | ToggleButtonDriver | ToggleButton | isSelected/setSelected via aria-pressed. | | ButtonGroupDriver | ButtonGroup | List of buttons; clickButton(name), getButtonCount, getOrientation. | | ToggleButtonGroupDriver | ToggleButtonGroup | select/deselect/isSelected by aria-label; getSelectedLabels. | | LinkDriver | Link | getHref/getTarget/getRel; isButtonFallback (no-href <button>). |

Text inputs

| Driver | Astryx component | Notes | | ------------------------ | ---------------- | ------------------------------------------------------------------------------------- | | TextInputDriver | TextInput | Value, clear, getLabel/getStatusMessage (a11y links), isRequired/isInvalid. | | TextAreaDriver | TextArea | Value, getRows, getCharCount. | | NumberInputDriver | NumberInput | Value, getMin/getMax/getStep/getUnits; stepUp/stepDown (E2E). | | TimeInputDriver | TimeInput | getValue returns the display string (not ISO); increment/decrement (E2E). | | AstryxFieldInputDriver | — | Shared base for the field inputs above (linked label/status resolution). |

Selection controls

| Driver | Astryx component | Notes | | ------------------------ | ------------------ | -------------------------------------------------------------------------- | | CheckboxInputDriver | CheckboxInput | isChecked/toggle; isIndeterminate (aria-checked="mixed"). | | RadioListDriver | RadioList | getSelectedValue/selectByValue by radio value; isItemChecked. | | CheckboxListDriver | CheckboxList | Label/index addressed (item value is not in the DOM); getCheckedLabels. | | CheckboxListItemDriver | — | A single CheckboxList row: getLabel/isChecked/toggle. | | SwitchDriver | Switch | isOn/turnOn/turnOff via the role="switch" input. | | SegmentedControlDriver | SegmentedControl | Single-select radiogroup; value via data-value. | | SelectableCardDriver | SelectableCard | isSelected/toggle via the card's hidden checkbox; clicks the card. | | SliderDriver | Slider | Single-thumb; getValue (aria-valuenow), keyboard setValue (no drag). |

Structure & feedback

| Driver | Astryx component | Notes | | ------------------- | ---------------- | -------------------------------------------------------------------------------- | | FieldDriver | Field | getLabel/getDescription/getStatusMessage, isRequired/isOptional. | | InputGroupDriver | InputGroup | getLabel, getAddonTexts. | | FieldStatusDriver | FieldStatus | getStatus/getMessage/isError via stable data-type (role is conditional). | | BannerDriver | Banner | getTitle/getDescription/getStatus, dismiss, toggleExpand. | | PaginationDriver | Pagination | getCurrentPage, goToPage/next/previous, getCountText. | | CollapsibleDriver | Collapsible | isExpanded/expand/collapse via the trigger's aria-expanded. |

Wave 2 — overlays & menus. Astryx renders these in-tree (no portal): menus and popovers mount their panel as a sibling of the trigger via the native Popover API, and dialogs are native <dialog> elements. Each driver anchors on the trigger (or the <dialog>) and reads open state from aria-expanded or the <dialog> open attribute; panel visibility and Escape/backdrop dismissal are native behaviours covered only by the Playwright run (and skipped on WebKit, which cannot drive native-popover interactions). Anchoring rationale lives in each driver's source doc comment.

Menus & navigation

| Driver | Astryx component | Notes | | -------------------- | ---------------- | -------------------------------------------------------------------------------- | | NavMenuDriver | NavHeadingMenu | Flat link/action menu; getItemLabels/getItemCount/clickItem/getItemHref. | | DropdownMenuDriver | DropdownMenu | Trigger-anchored; open/close/isOpen, selectByLabel, getTriggerLabel. | | MoreMenuDriver | MoreMenu | Icon-only DropdownMenu; getTriggerLabel reads the aria-label. | | TabListDriver | TabList | getItemLabels/getActiveLabel/selectTab/isActive/getTabHref. | | TabDriver | Tab | A single tab: getLabel/isActive (aria-current="page")/getHref. | | ToolbarDriver | Toolbar | getLabel/getOrientation/getSize/getItemCount. | | AstryxMenuDriver | — | Shared menu base (positional role="menuitem" iteration). | | MenuItemDriver | — | A single role="menuitem" (<a>/<div>): getLabel/isDisabled/getHref. |

Overlays & feedback

| Driver | Astryx component | Notes | | ------------------- | ---------------- | -------------------------------------------------------------------------------- | | PopoverDriver | Popover | Trigger-anchored; open/close/isOpen, getLabel/getContent. | | DialogDriver | Dialog | Native <dialog>; isOpen/isModal/getTitle/closeByEscape; content parts. | | AlertDialogDriver | AlertDialog | role="alertdialog"; getTitle/getDescription, clickAction/clickCancel. | | ToastDriver | Toast | Stable data-type: getType/isError/getRole/getMessage, dismiss. |

Wave 3 — lists, tables, selectors & dates. The list/table/tree drivers read structure from native semantics (<li>, <table>, ul[role="tree"]) and per-row state from ARIA. The combobox family (Selector/MultiSelector/Typeahead/Tokenizer, plus the CommandPalette dialog and PowerSearch's field suggestions) shares one option-enumeration mechanism — options are addressed by their contiguous ${listboxId}-${item|option}-${i} ids — exposed through AstryxComboboxDriver (its trigger open/close layer) over an internal IndexedOptionListDriver base. Popup and calendar-popover visibility are native behaviours covered by the Playwright run; structure and ARIA render faithfully in jsdom. Anchoring rationale and the scroll/layout-only caveats (Carousel overflow, Outline scroll-spy) live in each driver's source doc comment.

Lists & display

| Driver | Astryx component | Notes | | -------------------- | ---------------- | -------------------------------------------------------------------------------------------- | | ListDriver | List | <li>-addressed rows; getItemLabels/getSelectedLabels/clickItem/isOrdered. | | ListItemDriver | — | A single row: getLabel (full text), isSelected/isDisabled (ARIA), isLink/getHref. | | MetadataListDriver | MetadataList | <dl> pairs; getLabels/getValueByLabel/getEntryCount, showMore/showLess. | | OutlineDriver | Outline | TOC nav; getItemLabels/getActiveLabel (aria-current)/getHref/getLevel/clickItem. | | OutlineItemDriver | — | A single entry: getLabel/getHref/getLevel (data-level)/isActive. | | CarouselDriver | Carousel | getLabel/getItemCount/hasNavButtons; scrollNext/scrollPrev are E2E-only. |

Tables & trees

| Driver | Astryx component | Notes | | ---------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | | TableDriver | Table | data-column-key/aria-sort/aria-selected; headers, data rows (empty-state row excluded), sort, row selection. TableSortDirection is re-exported. | | TreeListDriver | TreeList | ul[role="tree"] walked depth-first; getVisibleItemLabels/getItemDepth/expandItem/collapseItem/clickItem. |

Selectors, typeaheads & search

| Driver | Astryx component | Notes | | ---------------------- | ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | | AstryxComboboxDriver | — | Shared combobox base: trigger open/close/isExpanded over the option-enumeration surface. | | SelectorDriver | Selector | Single-select; getOptionLabels/selectByLabel/getSelectedLabel/isOptionSelected. | | MultiSelectorDriver | MultiSelector | Multi-select; toggleByLabel/getSelectedLabels (excludes select-all)/selectAll/clearAll. | | TypeaheadDriver | Typeahead | Search-as-you-type single-select; type/getResultLabels/selectByLabel/clear/isLoading. | | TokenizerDriver | Tokenizer | Multi-token; getTokenLabels/addByLabel/create/removeToken/clearAll/isLoading. | | CommandPaletteDriver | CommandPalette | Host-controlled <dialog>; search/getOptionLabels/getOptionValue/selectByLabel/getActiveValue. | | PowerSearchDriver | PowerSearch | Best-effort v1: getFilterLabels/removeFilter/clearAll/getFieldSuggestionLabels/getResultCount (in-popover edit is E2E/follow-up). |

Dates

| Driver | Astryx component | Notes | | ---------------------- | ---------------- | --------------------------------------------------------------------------------------------------------------------------- | | CalendarDriver | Calendar | Inline; [data-date] cells, getMode/getVisibleMonthLabel/selectDay/selectRange/previousMonth/nextMonth. | | DateInputDriver | DateInput | Input value + calendar popover; open/pickDate (via aria-controls)/isInvalid/clear. | | DateTimeInputDriver | DateTimeInput | Extends DateInputDriver with a paired time field (getTimeValue/setTime). | | DateRangeInputDriver | DateRangeInput | Best-effort v1: popover <dialog> with presets + range pickRange (the end day is re-resolved after the start click). |

For more in-depth information, visit https://atomic-testing.dev.