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

@sprucelabs/jest-json-reporter

Package Overview
Dependencies
Maintainers
3
Versions
1378
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sprucelabs/jest-json-reporter - npm Package Compare versions

Comparing version 5.0.0 to 5.1.0

3

build/index.d.ts

@@ -1,1 +0,2 @@

export { default, START_DIVIDER, END_DIVIDER } from './JsonReporter';
export { default } from './JsonReporter';
export * from './JsonReporter';
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
var __importDefault = (this && this.__importDefault) || function (mod) {

@@ -6,7 +16,6 @@ return (mod && mod.__esModule) ? mod : { "default": mod };

Object.defineProperty(exports, "__esModule", { value: true });
exports.END_DIVIDER = exports.START_DIVIDER = exports.default = void 0;
exports.default = void 0;
var JsonReporter_1 = require("./JsonReporter");
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(JsonReporter_1).default; } });
Object.defineProperty(exports, "START_DIVIDER", { enumerable: true, get: function () { return JsonReporter_1.START_DIVIDER; } });
Object.defineProperty(exports, "END_DIVIDER", { enumerable: true, get: function () { return JsonReporter_1.END_DIVIDER; } });
__exportStar(require("./JsonReporter"), exports);
//# sourceMappingURL=index.js.map
import { AggregatedResult, Context, Reporter, Test, TestResult } from '@jest/reporters';
export declare type Milliseconds = number;
declare type Status = 'passed' | 'failed' | 'skipped' | 'pending' | 'todo' | 'disabled';
export declare type TestStatus = 'passed' | 'failed' | 'skipped' | 'pending' | 'todo' | 'disabled';
declare type CallSite = {

@@ -17,3 +17,3 @@ column: number;

numPassingAsserts: number;
status: Status;
status: TestStatus;
title: string;

@@ -20,0 +20,0 @@ };

@@ -0,1 +1,8 @@

# [5.1.0](https://github.com/sprucelabsai/jest-json-reporter/compare/v5.0.0...v5.1.0) (2020-11-06)
### Features
* more exports ([21c4104](https://github.com/sprucelabsai/jest-json-reporter/commit/21c4104))
# [5.0.0](https://github.com/sprucelabsai/jest-json-reporter/compare/v4.0.0...v5.0.0) (2020-11-06)

@@ -2,0 +9,0 @@

@@ -9,3 +9,3 @@ {

],
"version": "5.0.0",
"version": "5.1.0",
"main": "./build/JsonReporter.js",

@@ -12,0 +12,0 @@ "types": "./build/JsonReporter.d.ts",

Sorry, the diff of this file is not supported yet

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