New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

jest-qase-reporter

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jest-qase-reporter - npm Package Compare versions

Comparing version

to
1.3.0-alpha.1

1

dist/index.d.ts

@@ -5,2 +5,3 @@ import { Reporter, Test, TestResult } from '@jest/reporters';

basePath?: string;
rootSuiteTitle?: string;
projectCode: string;

@@ -7,0 +8,0 @@ runId?: string;

8

dist/index.js

@@ -77,3 +77,3 @@ "use strict";

Envs["environmentId"] = "QASE_ENVIRONMENT_ID";
Envs["rootSuite"] = "QASE_ROOT_SUITE_TITLE";
Envs["rootSuiteTitle"] = "QASE_ROOT_SUITE_TITLE";
})(Envs || (Envs = {}));

@@ -94,2 +94,3 @@ var Statuses = {

this.options.projectCode = _options.projectCode || this.getEnv(Envs.projectCode) || '';
this.options.rootSuiteTitle = _options.rootSuiteTitle || this.getEnv(Envs.rootSuiteTitle);
this.options.runComplete = !!this.getEnv(Envs.runComplete) || this.options.runComplete;

@@ -244,4 +245,7 @@ this.api = new qaseio_1.QaseApi(this.getEnv(Envs.apiToken) || this.options.apiToken || '', this.getEnv(Envs.basePath) || this.options.basePath);

_this.logTestItem(result);
var fullPathToCase = result.ancestorTitles.join('\t');
var item = {
path: result.ancestorTitles.join('\t'),
path: _this.options.rootSuiteTitle
? _this.options.rootSuiteTitle + "\t" + fullPathToCase
: fullPathToCase,
result: result.status,

@@ -248,0 +252,0 @@ duration: result.duration,

{
"name": "jest-qase-reporter",
"version": "v1.3.0-alpha.0",
"version": "v1.3.0-alpha.1",
"description": "Qase TMS Jest Reporter",

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

Sorry, the diff of this file is not supported yet