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

ortoni-report

v4.0.7

Published

Playwright Report By LetCode with Koushik

Downloads

25,178

Readme

Ortoni Report

A comprehensive and visually appealing HTML report generator tailored for Playwright tests. Designed with powerful features and customizable options, Ortoni Report simplifies the process of reviewing and managing test results, making test reporting more intuitive and accessible.

Live Demo: Ortoni Report

Ortoni Report Preview

Key Features

1. Organization & Navigation

  • Sidebar Navigation: Enjoy a clean and structured layout for seamless navigation.

  • Sections:

    • Dashboard: High-level overview of test analytics and trends.
    • Tests: Dive into individual test details including logs, screenshots, and errors.
    • Analytics: Track overall execution metrics, trends, and flaky/slow test insights.
    • Glance: See all the tests in a single Tabular view
    • Retries Tab: Compare failed and passed attempts of the same test side-by-side.
    • Screenshots: See all the test images
  • Hierarchical Grouping: Tests are organized by filename, suite, and project for better traceability.

  • Test History View: Access up to 25 recent executions with a beautiful chart

  • Advanced Filtering: Filter by Project, Tags, and Status.

  • Deep Linking: Shareable URLs to directly navigate to specific test failures.

  • Command Palette (⌘+K): Instant global search and navigation across tests.

  • Power-User Keyboard Shortcuts:

    • J / K → Navigate through test list.
    • Enter → Open selected test.
    • T → Toggle Dark/Light mode.
  • Configurable Integration: Easy setup with Playwright using TypeScript/JavaScript, along with customizable preferences.

  • 🔀 Merge Reports: Combine multiple shard/parallel test run reports into a single consolidated view using CLI (npx ortoni-report merge-report).


2. Detailed Reporting & Debugging

  • Comprehensive Test Data: Includes status, duration, tags, logs, errors, screenshots, videos, trace viewer & markdown.
  • Native Trace Viewer: Directly open the trace viewer within the reporter in a new tab.
  • Retry Side-by-Side Comparison: Compare failure vs success attempts easily.
  • Error Similarity Grouping: Automatically groups failures based on common error patterns for faster triage.
  • Export Options: Copy failure summaries formatted for Slack, Jira, or direct sharing links.

3. AI-Powered Insights

  • AI-Driven Root Cause Analysis:
    • Integrated "Suggest Fix" feature.
    • Supports multiple LLM providers:
      • OpenAI
      • Gemini
      • Claude
      • Ollama
    • Users can configure model and API keys directly from settings.

4. Visualization & Analytics

  • Test Analytics Dashboard

    • Summary of total test runs, passed/failed counts, pass rate, and average duration.
    • Trends Over Time: Line chart showing test results across the last 100 runs.
    • Top Flaky Tests: Identify unstable tests quickly.
    • Slowest Tests: View tests with slowest average durations.
    • Error Pattern Insights: Identify recurring failures instantly.
  • Heatmaps

    • Test Reliability Heatmap showing flaky execution patterns across days and time windows.
  • Chart Visualizations

    • Charts for test summary and per-project breakdowns.
    • Bar charts for project-specific comparisons.
    • Line charts for execution status progression over time (local execution).

5. Customization & Personalization

  • Theme Support: Switch between light and dark themes.
  • Custom Branding: Add company or project logos.
  • Flexible Attachments: Choose Base64 or file path formats for media files.
  • Custom Paths: Define report filenames and output folders.
  • Meta Information: Add custom user or environment metadata.

6. User Experience & Usability

  • Search & Reset: Quickly search by keyword or status.
  • Self-Contained Reports: Easily share offline-friendly reports.
  • Multi-Filters: Combine filters for targeted analysis.
  • CLI: Open reports anytime using built-in commands.
  • Open Markdown: View markdown and reuse it directly in AI prompts.
  • Supports CI/CD

Installation & Setup

Step 1: Install Ortoni Report

npm install -g ortoni-report

Step 2: Configure in playwright.config.[ts/js]

import { defineConfig } from "@playwright/test";
import { OrtoniReportConfig } from "ortoni-report";
import * as os from "os";

const reportConfig: OrtoniReportConfig = {
  open: process.env.CI ? "never" : "always",
  folderPath: "report",
  filename: "index.html",
  title: "Ortoni Test Report",
  projectName: "Your Project title",
  testType: "Functional",
  authorName: os.userInfo().username,
  base64Image: false,
  stdIO: false,
  meta: {
    "Test Cycle": "Feb, 2026",
    version: "4",
    description: "My automation suite",
    release: "0.6",
    platform: os.type(),
  },
};

export default defineConfig({
  reporter: [["ortoni-report", reportConfig]],
});

Using the Ortoni Report CLI

Command: show-report

Starts a local Express server and serves the generated report.

Options

  • -d, --dir <path> → Report folder (default: ortoni-report)
  • -f, --file <filename> → Report filename (default: ortoni-report.html)
  • -p, --port <port> → Server port (default: 2004)

Example

npx ortoni-report show-report
npx ortoni-report show-report --dir custom-folder --file my-report.html --port 3000

Command: merge-report

Merges multiple shard/parallel reports into a single consolidated report.

Options

  • -d, --dir <path> → Folder containing shard reports
  • -f, --file <filename> → Output merged filename

Example

npx ortoni-report merge-report
npx ortoni-report merge-report --dir my-folder --file final-report.html

Changelog

See full release updates here


License

Licensed under


Contributors

  1. Prabhash Dissanayake - PR

Feedback and Contributions

For issues or contributions: ortoni-report


Support

UPI: ortoni@axl (Koushik Chatterjee)

Buy me coffee | Paypal


Developed and designed by Koushik Chatterjee


Tech Stack

  1. Report generated using Playwright custom reporter
  2. UI – React and Shadcn UI
  3. Database – SQLite
  4. Local Server – Express

LetCode with Koushik