@empiricalrun/playwright-utils 0.27.8 → 0.27.10
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 +15 -0
- package/dist/reporter/custom.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @empiricalrun/playwright-utils
|
|
2
2
|
|
|
3
|
+
## 0.27.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 385cf7d: fix: ora needs dynamic import for nodejs 20
|
|
8
|
+
- Updated dependencies [385cf7d]
|
|
9
|
+
- @empiricalrun/test-gen@0.69.5
|
|
10
|
+
|
|
11
|
+
## 0.27.9
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [5ded95d]
|
|
16
|
+
- @empiricalrun/test-gen@0.69.4
|
|
17
|
+
|
|
3
18
|
## 0.27.8
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/reporter/custom.js
CHANGED
|
@@ -177,7 +177,7 @@ class HtmlReporter {
|
|
|
177
177
|
this.config = config;
|
|
178
178
|
}
|
|
179
179
|
onBegin(suite) {
|
|
180
|
-
|
|
180
|
+
logger_1.logger.debug("Using @empiricalrun/playwright-utils custom reporter");
|
|
181
181
|
const { outputFolder, open, attachmentsBaseURL, host, port } = this._resolveOptions();
|
|
182
182
|
this._outputFolder = outputFolder;
|
|
183
183
|
this._open = open;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@empiricalrun/playwright-utils",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.10",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"rimraf": "^6.0.1",
|
|
46
46
|
"@empiricalrun/llm": "^0.19.1",
|
|
47
47
|
"@empiricalrun/r2-uploader": "^0.3.9",
|
|
48
|
-
"@empiricalrun/test-gen": "^0.69.
|
|
48
|
+
"@empiricalrun/test-gen": "^0.69.5"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"dev": "tsc --build --watch",
|