@empiricalrun/playwright-utils 0.13.3 → 0.13.4

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,12 @@
1
1
  # @empiricalrun/playwright-utils
2
2
 
3
+ ## 0.13.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [2f520d3]
8
+ - @empiricalrun/r2-uploader@0.2.0
9
+
3
10
  ## 0.13.3
4
11
 
5
12
  ### 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",
3
+ "version": "0.13.4",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -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.1.3"
42
+ "@empiricalrun/r2-uploader": "^0.2.0"
43
43
  },
44
44
  "scripts": {
45
45
  "dev": "tsc --build --watch",