@empiricalrun/playwright-utils 0.18.21 → 0.18.24
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 +22 -0
- package/dist/reporter/custom.js +1 -1
- package/dist/reporter/util.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @empiricalrun/playwright-utils
|
|
2
2
|
|
|
3
|
+
## 0.18.24
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [28a482d]
|
|
8
|
+
- @empiricalrun/test-gen@0.38.47
|
|
9
|
+
|
|
10
|
+
## 0.18.23
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [4ca5faa]
|
|
15
|
+
- @empiricalrun/test-gen@0.38.46
|
|
16
|
+
|
|
17
|
+
## 0.18.22
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- 44a3270: fix: removed logs
|
|
22
|
+
- Updated dependencies [efb88aa]
|
|
23
|
+
- @empiricalrun/test-gen@0.38.45
|
|
24
|
+
|
|
3
25
|
## 0.18.21
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/dist/reporter/custom.js
CHANGED
|
@@ -105,7 +105,7 @@ class HtmlReporter {
|
|
|
105
105
|
const testCaseRunEventTask = async () => {
|
|
106
106
|
return Promise.all(attachmentPromises)
|
|
107
107
|
.then((uploadedAttachments) => {
|
|
108
|
-
logger_1.logger.
|
|
108
|
+
logger_1.logger.debug(`Attachments for test ${test.title} are uploaded:`, uploadedAttachments);
|
|
109
109
|
const { suites, projectName } = (0, util_1.suitesAndProjectForTest)(test);
|
|
110
110
|
let params = {
|
|
111
111
|
test,
|
package/dist/reporter/util.js
CHANGED
|
@@ -153,7 +153,7 @@ async function sendTestCaseUpdateToDashboard(params) {
|
|
|
153
153
|
maxTimeout: 60000,
|
|
154
154
|
factor: 3,
|
|
155
155
|
});
|
|
156
|
-
logger_1.logger.
|
|
156
|
+
logger_1.logger.debug("Successfully sent test case update to dashboard");
|
|
157
157
|
}
|
|
158
158
|
catch (e) {
|
|
159
159
|
console.error(e.message);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@empiricalrun/playwright-utils",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.24",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"playwright-extra": "^4.3.6",
|
|
44
44
|
"puppeteer-extra-plugin-recaptcha": "^3.6.8",
|
|
45
45
|
"rimraf": "^6.0.1",
|
|
46
|
-
"@empiricalrun/
|
|
46
|
+
"@empiricalrun/test-gen": "^0.38.47",
|
|
47
47
|
"@empiricalrun/llm": "^0.9.28",
|
|
48
|
-
"@empiricalrun/
|
|
48
|
+
"@empiricalrun/r2-uploader": "^0.3.7"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"dev": "tsc --build --watch",
|