Socket
Book a DemoInstallSign in
Socket

@flakiness/report

Package Overview
Dependencies
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@flakiness/report

This folder contains the source for the `@flakiness/report` package. This package is published automatically when a new version of the service is deployed.

latest
npmnpm
Version
0.84.0
Version published
Maintainers
1
Created
Source

Flakiness Report

This folder contains the source for the @flakiness/report package. This package is published automatically when a new version of the service is deployed.

The package consists of:

  • A CLI to interact with flakiness.io service
  • A set of reporters for popular test runners to generate & upload Flakiness report. Supported test runners:
    • playwright/test
  • Typescript definition of the Flakiness Report JSON
  • Validation utilities for the Flakiness Report JSON (TBD)

Getting Started

To start using reporter with Playwright Test:

  • Install this package:
    npm i @flakiness/report@latest
    
  • Add flakiness.io to the playwright.config.ts file:
    import { defineConfig } from '@playwright/test';
    
    export default defineConfig({
      reporter: [
        ['list'],
        ['@flakiness/report/playwright-test', {
          endpoint: 'https://flakiness.io', // custom endpoint
          token: '...', // Flakiness access token
          collectBrowserVersion: true, // collect browser versions
        }]
      ],
    });
    

FAQs

Package last updated on 17 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts