jest-qase-reporter 2.0.0-beta.2 → 2.0.0
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/README.md +3 -4
- package/changelog.md +12 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -6,14 +6,13 @@ It can work in different test automation scenarios:
|
|
|
6
6
|
* Create new test cases in Qase from existing autotests.
|
|
7
7
|
* Report Jest test results to existing test cases in Qase.
|
|
8
8
|
|
|
9
|
-
Testing frameworks that use Jest as a test runner, such as
|
|
9
|
+
Testing frameworks that use Jest as a test runner, such as Puppeteer, Appium, and Detox,
|
|
10
10
|
can also be used with Jest reporter.
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
To install the latest beta version, run:ы
|
|
12
|
+
To install the latest beta version, run:
|
|
14
13
|
|
|
15
14
|
```shell
|
|
16
|
-
npm install --save-dev jest-qase-reporter
|
|
15
|
+
npm install --save-dev jest-qase-reporter
|
|
17
16
|
```
|
|
18
17
|
|
|
19
18
|
# Contents
|
package/changelog.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# jest-qase-reporter@2.0.0
|
|
2
|
+
|
|
3
|
+
## What's new
|
|
4
|
+
|
|
5
|
+
This is the first release in the 2.x series of the Jest reporter.
|
|
6
|
+
It brings new and more flexible configs, uploading results in parallel with running tests,
|
|
7
|
+
and other powerful features.
|
|
8
|
+
|
|
9
|
+
This changelog entry will be updated soon.
|
|
10
|
+
For more information about the new features and a guide for migration from v1, refer to the
|
|
11
|
+
[reporter documentation](https://github.com/qase-tms/qase-javascript/tree/main/qase-jest#readme)
|
|
12
|
+
|
|
1
13
|
# jest-qase-reporter@2.0.0-beta.2
|
|
2
14
|
|
|
3
15
|
## What's new
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jest-qase-reporter",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Qase TMS Jest Reporter",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -40,12 +40,12 @@
|
|
|
40
40
|
"test": "jest --passWithNoTests",
|
|
41
41
|
"clean": "rm -rf dist"
|
|
42
42
|
},
|
|
43
|
-
"author": "
|
|
43
|
+
"author": "Qase Team <support@qase.io>",
|
|
44
44
|
"license": "Apache-2.0",
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"lodash.get": "^4.4.2",
|
|
47
47
|
"lodash.has": "^4.5.2",
|
|
48
|
-
"qase-javascript-commons": "^2.0.0
|
|
48
|
+
"qase-javascript-commons": "^2.0.0",
|
|
49
49
|
"uuid": "^9.0.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|