@empiricalrun/playwright-utils 0.18.21 → 0.18.23

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 CHANGED
@@ -1,5 +1,20 @@
1
1
  # @empiricalrun/playwright-utils
2
2
 
3
+ ## 0.18.23
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [4ca5faa]
8
+ - @empiricalrun/test-gen@0.38.46
9
+
10
+ ## 0.18.22
11
+
12
+ ### Patch Changes
13
+
14
+ - 44a3270: fix: removed logs
15
+ - Updated dependencies [efb88aa]
16
+ - @empiricalrun/test-gen@0.38.45
17
+
3
18
  ## 0.18.21
4
19
 
5
20
  ### Patch Changes
@@ -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.info(`Attachments for test ${test.title} are uploaded:`, uploadedAttachments);
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,
@@ -153,7 +153,7 @@ async function sendTestCaseUpdateToDashboard(params) {
153
153
  maxTimeout: 60000,
154
154
  factor: 3,
155
155
  });
156
- logger_1.logger.info("Successfully sent test case update to dashboard");
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.21",
3
+ "version": "0.18.23",
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/test-gen": "^0.38.46",
46
47
  "@empiricalrun/r2-uploader": "^0.3.7",
47
- "@empiricalrun/llm": "^0.9.28",
48
- "@empiricalrun/test-gen": "^0.38.44"
48
+ "@empiricalrun/llm": "^0.9.28"
49
49
  },
50
50
  "scripts": {
51
51
  "dev": "tsc --build --watch",