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

@flakeytesting/webdriverio-reporter

v0.9.0

Published

WebdriverIO reporter for Flakey — uploads results, screenshots, and videos

Readme

@flakeytesting/webdriverio-reporter

WebdriverIO reporter for the Flakey test reporting dashboard. Uploads results, screenshots, and videos.

Install

pnpm add -D @flakeytesting/webdriverio-reporter
# or
npm install --save-dev @flakeytesting/webdriverio-reporter

Peer deps:

  • @wdio/reporter >=8.0.0 (required — base class)
  • @wdio/types >=8.0.0 (optional — type info only)
  • webdriverio >=8.0.0 (optional)

Quick start

// wdio.conf.ts
import FlakeyReporter from "@flakeytesting/webdriverio-reporter";

export const config = {
  reporters: [
    ["spec"], // keep stdout output if you like
    [FlakeyReporter, {
      url:    process.env.FLAKEY_API_URL,
      apiKey: process.env.FLAKEY_API_KEY,
      suite:  "my-app-e2e",
    }],
  ],
  // ...rest of your wdio config
};

Then run:

FLAKEY_API_URL=https://flakey.your-domain.com \
FLAKEY_API_KEY=fk_xxx... \
wdio run wdio.conf.ts

The reporter buffers per-spec results and POSTs the complete run on onRunnerEnd. For live per-test events, additionally wire @flakeytesting/live-reporter/webdriverio.

Options + env-var fallbacks

The reporter constructor reads any of these from process.env if the matching option is absent.

| Option | Type | Fallback | Notes | |--------|------|----------|-------| | url | string | FLAKEY_API_URL | Required (option or env). | | apiKey | string | FLAKEY_API_KEY | Required. | | suite | string | FLAKEY_SUITE, then "default" | Suite name shown in dashboard. | | branch | string | BRANCHGITHUB_HEAD_REFGITHUB_REF_NAMEBITBUCKET_BRANCH | | | commitSha | string | COMMIT_SHAGITHUB_SHABITBUCKET_COMMIT | | | ciRunId | string | CI_RUN_IDGITHUB_RUN_IDBITBUCKET_BUILD_NUMBER | | | release | string | FLAKEY_RELEASE | Release version — backend upserts release + links run | | environment | string | FLAKEY_ENVTEST_ENV | Target env label (e.g. qa, stage) | | screenshotsDir | string | "screenshots" | Relative to cwd | | videosDir | string | "videos" | Relative to cwd |

What gets captured

  • Test title, full title (joined from > parents), pass/fail/skip status, duration
  • Error message + stack (preferring test.error, falling back to test.errors[0])
  • Screenshots from screenshotsDir, videos from videosDir

Live streaming (optional)

For mid-run per-test events:

// wdio.conf.ts
import FlakeyReporter from "@flakeytesting/webdriverio-reporter";
import FlakeyLiveReporter from "@flakeytesting/live-reporter/webdriverio";

export const config = {
  reporters: [
    [FlakeyReporter, { /* ... */ }],
    [FlakeyLiveReporter, {
      url:    process.env.FLAKEY_API_URL,
      apiKey: process.env.FLAKEY_API_KEY,
      suite:  "my-app-e2e",
    }],
  ],
};

Compatibility

  • WebdriverIO: >=8.0.0
  • Node: 20+

Links