Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@currents/jest

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@currents/jest

Currents reporter for Jest

  • 0.0.7
  • npm
  • Socket score

Version published
Weekly downloads
347
decreased by-4.67%
Maintainers
2
Weekly downloads
 
Created
Source

@currents/jest

Jest reporter for Currents - a cloud dashboard for debugging, troubleshooting and analysing parallel CI tests.

  • Saves jest test results to a cloud
  • Fetches git information and associated with CI builds
  • Integrates with your workflow - Slack, GitHub or GitLabPR comments and status checks
  • Flakiness, failure rate, duration and much more aggregative metrics
  • Common errors tracker
  • Automated reports with test suite health metrics
  • REST API and HTTP Webhooks

Install

npm install -D @currents/jest

Usage

Add the reporter to the Jest configuration:

import type { Config } from "jest";

const config: Config = {
  reporters: [
    "default",
    [
      "@currents/jest",
      {
        ciBuildId: process.env.CURRENTS_CI_BUILD_ID,
        recordKey: process.env.CURRENTS_RECORD_KEY,
        projectId: process.env.CURRENTS_PROJECT_ID,
      },
    ],
  ],
};

export default config;

or set the --reporters option when running the Jest CLI

CURRENTS_PROJECT_ID=xxx CURRENTS_RECORD_KEY=zzz CURRENTS_CI_BUILD_ID=yyy npx jest --reporters=@currents/jest

Keywords

FAQs

Package last updated on 06 Jun 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc