@empiricalrun/playwright-utils 0.22.7 → 0.23.1

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,22 @@
1
1
  # @empiricalrun/playwright-utils
2
2
 
3
+ ## 0.23.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 73a27b8: revert: bundling test-gen with playwright-utils
8
+
9
+ ## 0.23.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 3e8b943: chore: bundle test-gen package so that npx test-gen can install itself
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [0def0a2]
18
+ - @empiricalrun/test-gen@0.46.11
19
+
3
20
  ## 0.22.7
4
21
 
5
22
  ### Patch Changes
@@ -40,7 +40,7 @@ fixtures_1.test.beforeEach(async ({ page }) => {
40
40
  await (0, fixtures_1.expect)(page.getByText("This is a toast message")).not.toBeVisible();
41
41
  await (0, fixtures_1.expect)(page.getByRole("button", { name: "Close" })).toBeVisible();
42
42
  });
43
- (0, fixtures_1.test)("should return from master agent planner", async ({ page, server }) => {
43
+ (0, fixtures_1.test)("should fallback when the overlay cannot be dismissed", async ({ page, server, }) => {
44
44
  await page.goto(`${server.baseURL}/no-overlay.html`);
45
45
  let error;
46
46
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empiricalrun/playwright-utils",
3
- "version": "0.22.7",
3
+ "version": "0.23.1",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -43,8 +43,8 @@
43
43
  "puppeteer-extra-plugin-recaptcha": "^3.6.8",
44
44
  "rimraf": "^6.0.1",
45
45
  "@empiricalrun/llm": "^0.9.35",
46
- "@empiricalrun/r2-uploader": "^0.3.8",
47
- "@empiricalrun/test-gen": "^0.46.10"
46
+ "@empiricalrun/test-gen": "^0.46.11",
47
+ "@empiricalrun/r2-uploader": "^0.3.8"
48
48
  },
49
49
  "scripts": {
50
50
  "dev": "tsc --build --watch",