testcafe-reporter-qase 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 +2 -3
- package/changelog.md +13 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -2,11 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Publish results simple and easy.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
To install the latest beta version, run:
|
|
5
|
+
To install the latest version, run:
|
|
7
6
|
|
|
8
7
|
```sh
|
|
9
|
-
npm install -D testcafe-reporter-qase
|
|
8
|
+
npm install -D testcafe-reporter-qase
|
|
10
9
|
```
|
|
11
10
|
|
|
12
11
|
## Updating from v1
|
package/changelog.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# qase-testcafe@2.0.0
|
|
2
|
+
|
|
3
|
+
## What's new
|
|
4
|
+
|
|
5
|
+
This is the first release in the 2.x series of the TestCafe reporter.
|
|
6
|
+
It brings a new annotation syntax with test parametrization and field values,
|
|
7
|
+
new and more flexible configs, uploading results in parallel with running tests,
|
|
8
|
+
and other powerful features.
|
|
9
|
+
|
|
10
|
+
This changelog entry will be updated soon.
|
|
11
|
+
For more information about the new features and a guide for migration from v1, refer to the
|
|
12
|
+
[reporter documentation](https://github.com/qase-tms/qase-javascript/tree/main/qase-testcafe#readme)
|
|
13
|
+
|
|
1
14
|
# qase-testcafe@2.0.0-beta.2
|
|
2
15
|
|
|
3
16
|
## What's new
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "testcafe-reporter-qase",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Qase TMS TestCafe Reporter",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"test": "jest --passWithNoTests",
|
|
38
38
|
"clean": "rm -rf dist"
|
|
39
39
|
},
|
|
40
|
-
"author": "
|
|
40
|
+
"author": "Qase Team <support@qase.io>",
|
|
41
41
|
"license": "Apache-2.0",
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"qase-javascript-commons": "^2.0.
|
|
43
|
+
"qase-javascript-commons": "^2.0.9",
|
|
44
44
|
"uuid": "^9.0.0"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|