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.8 to 0.0.9

1

dist/AllureReporter.d.ts

@@ -37,2 +37,3 @@ /// <reference types="node" />

addParameter(name: string, value: string): this;
addParameters(...params: string[][]): this;
addTestPathParameter(relativeFrom: string, spec: any): this;

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

@@ -266,2 +266,8 @@ "use strict";

}
addParameters(...params) {
params.forEach((p) => {
this.currentExecutable.addParameter(p[0], p[1]);
});
return this;
}
addTestPathParameter(relativeFrom, spec) {

@@ -268,0 +274,0 @@ const relativePath = path_1.relative(relativeFrom, spec.testPath);

2

package.json
{
"name": "jest-allure2-adapter",
"version": "0.0.8",
"version": "0.0.9",
"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