Socket
Socket
Sign inDemoInstall

jest-allure2-adapter

Package Overview
Dependencies
Maintainers
1
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jest-allure2-adapter - npm Package Compare versions

Comparing version 0.0.7 to 0.0.8

2

dist/AllureReporter.d.ts

@@ -35,3 +35,5 @@ /// <reference types="node" />

addPackage(value: string): this;
addPackageByTestPath(relativeFrom: string, spec: any): this;
addParameter(name: string, value: string): this;
addTestPathParameter(relativeFrom: string, spec: any): this;
description(description: string): this;

@@ -38,0 +40,0 @@ descriptionHtml(description: string): this;

@@ -9,2 +9,3 @@ "use strict";

const strip_ansi_1 = __importDefault(require("strip-ansi"));
const path_1 = require("path");
const setup_1 = require("./setup");

@@ -257,2 +258,7 @@ var SpecStatus;

}
addPackageByTestPath(relativeFrom, spec) {
const relativePath = path_1.relative(relativeFrom, spec.testPath);
this.addPackage(relativePath);
return this;
}
addParameter(name, value) {

@@ -262,2 +268,7 @@ this.currentExecutable.addParameter(name, value);

}
addTestPathParameter(relativeFrom, spec) {
const relativePath = path_1.relative(relativeFrom, spec.testPath);
this.addParameter('Test Path', relativePath);
return this;
}
description(description) {

@@ -264,0 +275,0 @@ this.currentTest.description = description;

2

package.json
{
"name": "jest-allure2-adapter",
"version": "0.0.7",
"version": "0.0.8",
"description": "Allure 2 Adapter for jest",

@@ -5,0 +5,0 @@ "main": "dist/index",

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