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

testergizer-open-core

v0.1.1

Published

Testergizer Open Core: a deterministic test execution engine with JSON-defined suites, CLI runner, and analysis tooling (results, diff, flaky).

Readme

Testergizer Open Core

Open-core engine for Testergizer: JSON test definitions, runner, assertions, CLI, and basic analysis tools.

Install

npm install
npx playwright install

Build

npm run build

Link CLI (development)

npm link

JSON schemas (v1)

  • schemas/test-suite.v1.json — test plan (suite)
  • schemas/results.v1.json — execution output (results)

Versioning

Suites may include a version field. If omitted, the runner assumes "1.0".

Step IDs (traceability)

Add a stable id per step in your suite JSON:

{
  "id": "login-button-value",
  "action": "assert",
  "assert": "valueContains",
  "selector": "#login-button",
  "value": "Login"
}

If id is omitted, the runner emits fallback IDs: step-1, step-2, ...

Run

testergizer run tests/login.saucedemo.json --headed
testergizer run tests/login.saucedemo.json --headed --slow-mo 200
testergizer run tests/login.saucedemo.json --browser firefox
testergizer run tests/login.saucedemo.json --screenshot-on-fail

Step retries (keyed by step ID)

Retry all steps up to 2 times:

testergizer run tests/login.saucedemo.json --step-retries 2

Retry only selected steps:

testergizer run tests/login.saucedemo.json --step-retries 2 --retry-steps login-button-value,username-placeholder

Optional delay between attempts:

testergizer run tests/login.saucedemo.json --step-retries 2 --retry-delay-ms 200

When a step passes after retries, the results report marks it as:

  • "attempts": >1
  • "flaky": true

Artifacts and results

Each execution produces a deterministic, append-only results artifact.

Results are organized per suite and timestamped to support historical inspection, diffing, and flaky test analysis.

artifacts/<suiteId>/results_<YYYYMMDD-HHMMSS>.json

Key properties:

  • Results are never overwritten
  • Each suite has its own results directory
  • Filenames are derived from the run start time
  • Artifacts are safe for CI, automation, and long-term analysis

Diff two runs (by test/step IDs)

testergizer diff artifacts/<suiteId>/results_*.json --out artifacts/diff.json

Flaky detection across many runs

testergizer flaky artifacts/<suiteId>/ --out artifacts/flaky.json

A test/step is considered flaky if it has at least one pass and one fail across the provided runs.

Validation

Testergizer includes built-in schema validation for both test suites and results artifacts.

testergizer validate tests/login.saucedemo.json
testergizer validate artifacts/<suiteId>/results_*.json

Validation is intended to enforce contracts in CI pipelines and to guarantee that generated artifacts remain compatible with analysis tools.

Scope and boundaries

Testergizer Open Core intentionally focuses on execution, validation, and analysis.

Included in Open Core:

  • JSON-native test execution
  • Strict suite and results schemas
  • Deterministic run artifacts
  • Step-level retries with failure classification
  • CLI tooling for run, validate, diff, and flaky analysis
  • CI-first behavior and exit codes

Out of scope for Open Core:

  • UI dashboards
  • Test recorder
  • Visual assertions
  • AI-based healing or selector repair
  • Cloud or remote execution
  • Team management and governance features

For a clear explanation of the Open Core vs commercial boundary, see:
Open Core vs Pro — Scope and Boundaries

Maintenance policy for the v0.1.x line is documented here:
Open Core Maintenance Policy

License and copyright

Testergizer Open Core is licensed under the Apache License, Version 2.0.

  • See LICENSE for the full license text
  • See NOTICE for copyright and attribution information