@empiricalrun/playwright-utils 0.13.3 → 0.13.5
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 +13 -0
- package/README.md +14 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @empiricalrun/playwright-utils
|
|
2
2
|
|
|
3
|
+
## 0.13.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7bb1e92: chore: bump playwright/test version in pw utils
|
|
8
|
+
|
|
9
|
+
## 0.13.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [2f520d3]
|
|
14
|
+
- @empiricalrun/r2-uploader@0.2.0
|
|
15
|
+
|
|
3
16
|
## 0.13.3
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -58,3 +58,17 @@ const email = await client.waitForEmail();
|
|
|
58
58
|
// Get login OTP
|
|
59
59
|
const loginCode = email.codes[0];
|
|
60
60
|
```
|
|
61
|
+
|
|
62
|
+
#### Add reporter
|
|
63
|
+
|
|
64
|
+
To use the custom HTML reporter, add the following to your Playwright config:
|
|
65
|
+
|
|
66
|
+
```ts
|
|
67
|
+
import { defineConfig } from "@playwright/test";
|
|
68
|
+
import { baseConfig } from "@empiricalrun/playwright-utils";
|
|
69
|
+
|
|
70
|
+
export default defineConfig({
|
|
71
|
+
...baseConfig,
|
|
72
|
+
...
|
|
73
|
+
});
|
|
74
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@empiricalrun/playwright-utils",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.5",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"author": "Empirical Team <hey@empirical.run>",
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@playwright/test": "^1.
|
|
25
|
+
"@playwright/test": "^1.47.1",
|
|
26
26
|
"@types/node": "^20.14.9"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"playwright-extra": "^4.3.6",
|
|
40
40
|
"puppeteer-extra-plugin-recaptcha": "^3.6.8",
|
|
41
41
|
"@empiricalrun/llm": "^0.9.1",
|
|
42
|
-
"@empiricalrun/r2-uploader": "^0.
|
|
42
|
+
"@empiricalrun/r2-uploader": "^0.2.0"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"dev": "tsc --build --watch",
|