jest-qase-reporter 2.2.1 → 2.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changelog.md +7 -0
- package/dist/reporter.js +2 -1
- package/package.json +2 -2
package/changelog.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# jest-qase-reporter@2.2.2
|
|
2
|
+
|
|
3
|
+
## Bug fixes
|
|
4
|
+
|
|
5
|
+
- Moved profiler import to separate sub-path (`qase-javascript-commons/profilers`) to avoid pulling `node:` modules into bundlers.
|
|
6
|
+
- Updated `qase-javascript-commons` dependency to `~2.5.7`.
|
|
7
|
+
|
|
1
8
|
# jest-qase-reporter@2.2.1
|
|
2
9
|
|
|
3
10
|
## What's new
|
package/dist/reporter.js
CHANGED
|
@@ -8,6 +8,7 @@ const lodash_has_1 = __importDefault(require("lodash.has"));
|
|
|
8
8
|
const lodash_get_1 = __importDefault(require("lodash.get"));
|
|
9
9
|
const uuid_1 = require("uuid");
|
|
10
10
|
const qase_javascript_commons_1 = require("qase-javascript-commons");
|
|
11
|
+
const profilers_1 = require("qase-javascript-commons/profilers");
|
|
11
12
|
const global_1 = require("./global");
|
|
12
13
|
/**
|
|
13
14
|
* @class JestQaseReporter
|
|
@@ -75,7 +76,7 @@ class JestQaseReporter {
|
|
|
75
76
|
reporterName: 'jest-qase-reporter',
|
|
76
77
|
});
|
|
77
78
|
if (composedOptions.profilers?.includes('network')) {
|
|
78
|
-
this.profiler = new
|
|
79
|
+
this.profiler = new profilers_1.NetworkProfiler({
|
|
79
80
|
skipDomains: composedOptions.networkProfiler?.skip_domains,
|
|
80
81
|
trackOnFail: composedOptions.networkProfiler?.track_on_fail,
|
|
81
82
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jest-qase-reporter",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.2",
|
|
4
4
|
"description": "Qase TMS Jest Reporter",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"lodash.get": "^4.4.2",
|
|
47
47
|
"lodash.has": "^4.5.2",
|
|
48
|
-
"qase-javascript-commons": "~2.5.
|
|
48
|
+
"qase-javascript-commons": "~2.5.7",
|
|
49
49
|
"uuid": "^9.0.1"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|