You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@flakiness/sdk

Package Overview
Dependencies
Maintainers
1
Versions
88
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@flakiness/sdk

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.

Source
npmnpm
Version
0.99.0
Version published
Weekly downloads
1.7K
30.74%
Maintainers
1
Weekly downloads
 
Created
Source

Flakiness SDK

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.

Getting Started

To start using reporter with Playwright Test:

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

FAQs

Package last updated on 15 Oct 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