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

@kubaszy/playwright-test-manager-reporter

v1.0.0

Published

Official Playwright test reporter for Playwright Test Manager

Downloads

6

Readme

@playwright-test-manager/reporter

Official Playwright test reporter for Playwright Test Manager - track your test results, identify flaky tests, and monitor test performance over time.

Installation

npm install --save-dev @playwright-test-manager/reporter

Quick Start

1. Get Your API Key

  1. Sign up at Playwright Test Manager
  2. Create a project
  3. Copy your API key from project settings

2. Configure Playwright

Add the reporter to your playwright.config.ts:

import { defineConfig } from '@playwright/test';

export default defineConfig({ reporter: [ ['list'], // Keep default console output ['@playwright-test-manager/reporter', { apiKey: 'your-api-key-here', apiUrl: 'https://backend-production-34fb.up.railway.app', // optional }] ], // ... rest of your config });

3. Run Your Tests

Your test results will be automatically uploaded to Playwright Test Manager! 🎉

Configuration Options

| Option | Type | Required | Default | Description | |--------|------|----------|---------|-------------| | apiKey | string | ✅ Yes | - | Your project API key | | apiUrl | string | ❌ No | Production URL | Custom backend URL | | enabled | boolean | ❌ No | true | Enable/disable reporter |

Features

  • 📊 Test History - Track test results over time
  • 🔍 Flaky Test Detection - Automatically identify unreliable tests
  • 📈 Performance Monitoring - Monitor test duration trends
  • 🌳 Branch Tracking - Compare results across branches
  • 🚀 CI/CD Integration - Works with GitHub Actions, GitLab CI, CircleCI, and more

CI/CD Setup

The reporter automatically detects CI environments and captures metadata:

GitHub Actions

name: Run Playwright tests run: npx playwright test env: PTM_API_KEY: ${{ secrets.PTM_API_KEY }}

Update your playwright.config.ts:

reporter: [ ['@playwright-test-manager/reporter', { apiKey: process.env.PTM_API_KEY || '', }] ]

Example Output

🎭 Playwright Test Manager Reporter initialized Run ID: 550e8400-e29b-41d4-a716-446655440000 API URL: https://backend-production-34fb.up.railway.app Branch: main

🚀 Starting test run 550e8400-e29b-41d4-a716-446655440000 ✅ Login test (1234ms) ✅ Dashboard test (2345ms) ❌ Profile test (3456ms)

📤 Sending 3 test results... ✅ Sent 3 test results

✨ Test run completed successfully! Total: 3 tests Passed: 2 ✅ Failed: 1 ❌ Skipped: 0 ⏭️ Duration: 7.04s View results: https://your-app-url.com/runs/550e8400-e29b-41d4-a716-446655440000

Troubleshooting

Reporter not sending results

  1. Check your API key is correct
  2. Verify backend URL is accessible
  3. Check console output for error messages

Results not appearing in dashboard

  1. Ensure you're logged into the correct project
  2. Check project API key matches the one in config
  3. Verify network connectivity to backend

Support

License

MIT © kubaszy