@lage-run/reporters 1.0.2 → 1.0.3
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.json +16 -1
- package/CHANGELOG.md +10 -2
- package/lib/ChromeTraceEventsReporter.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "@lage-run/reporters",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "Sat, 18 Feb 2023 00:
|
|
5
|
+
"date": "Sat, 18 Feb 2023 00:43:24 GMT",
|
|
6
|
+
"tag": "@lage-run/reporters_v1.0.3",
|
|
7
|
+
"version": "1.0.3",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "felescoto95@hotmail.com",
|
|
12
|
+
"package": "@lage-run/reporters",
|
|
13
|
+
"commit": "d6b4b81f694ee20c10f2521dd3058547699562c4",
|
|
14
|
+
"comment": "ChromeTraceEventsReporter: Add task name to category"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Sat, 18 Feb 2023 00:40:18 GMT",
|
|
6
21
|
"tag": "@lage-run/reporters_v1.0.2",
|
|
7
22
|
"version": "1.0.2",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# Change Log - @lage-run/reporters
|
|
2
2
|
|
|
3
|
-
This log was last generated on Sat, 18 Feb 2023 00:
|
|
3
|
+
This log was last generated on Sat, 18 Feb 2023 00:43:24 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 1.0.3
|
|
8
|
+
|
|
9
|
+
Sat, 18 Feb 2023 00:43:24 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- ChromeTraceEventsReporter: Add task name to category (felescoto95@hotmail.com)
|
|
14
|
+
|
|
7
15
|
## 1.0.2
|
|
8
16
|
|
|
9
|
-
Sat, 18 Feb 2023 00:40:
|
|
17
|
+
Sat, 18 Feb 2023 00:40:18 GMT
|
|
10
18
|
|
|
11
19
|
### Patches
|
|
12
20
|
|
|
@@ -39,7 +39,7 @@ class ChromeTraceEventsReporter {
|
|
|
39
39
|
}
|
|
40
40
|
const event = {
|
|
41
41
|
name: targetRun.target.id,
|
|
42
|
-
cat: targetRun.status
|
|
42
|
+
cat: `${targetRun.status}#${targetRun.target.task}`,
|
|
43
43
|
ph: "X",
|
|
44
44
|
ts: hrTimeToMicroseconds(targetRun.startTime) - hrTimeToMicroseconds(startTime),
|
|
45
45
|
dur: hrTimeToMicroseconds(targetRun.duration ?? [
|