wdio-qase-reporter 1.0.0 → 1.0.1
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 +12 -0
- package/dist/storage.js +6 -1
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# qase-wdio@1.0.1
|
|
2
|
+
|
|
3
|
+
## What's new
|
|
4
|
+
|
|
5
|
+
Resolved an issue with handling parent test suites, ensuring proper structure and reporting.
|
|
6
|
+
|
|
7
|
+
# qase-wdio@1.0.0
|
|
8
|
+
|
|
9
|
+
## What's new
|
|
10
|
+
|
|
11
|
+
Major release of the WDIO reporter package.
|
|
12
|
+
|
|
1
13
|
# qase-wdio@1.0.0-beta.4
|
|
2
14
|
|
|
3
15
|
## What's new
|
package/dist/storage.js
CHANGED
|
@@ -9,9 +9,14 @@ class Storage {
|
|
|
9
9
|
items = [];
|
|
10
10
|
clear() {
|
|
11
11
|
this.currentFile = undefined;
|
|
12
|
-
this.suites = [];
|
|
13
12
|
this.items = [];
|
|
14
13
|
this.ignore = false;
|
|
14
|
+
if (this.suites.length > 0) {
|
|
15
|
+
this.suites.pop();
|
|
16
|
+
}
|
|
17
|
+
else {
|
|
18
|
+
this.suites = [];
|
|
19
|
+
}
|
|
15
20
|
}
|
|
16
21
|
push(item) {
|
|
17
22
|
this.items.push(item);
|