@chrryai/waffles 1.1.78 → 1.1.80

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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -17,7 +17,7 @@ Waffles provides a collection of battle-tested Playwright utilities that make E2
17
17
  ## 📦 Installation
18
18
 
19
19
  ```bash
20
- npm install @askvex/waffles @playwright/test
20
+ npm install @chrryai/waffles @playwright/test
21
21
  ```
22
22
 
23
23
  ## 🚀 Quick Start
@@ -29,7 +29,7 @@ import {
29
29
  simulateInputPaste,
30
30
  waitForElement,
31
31
  generateTestEmail,
32
- } from "@askvex/waffles"
32
+ } from "@chrryai/waffles"
33
33
 
34
34
  test("chat interaction", async ({ page }) => {
35
35
  await page.goto("https://yourapp.com")
@@ -177,7 +177,7 @@ await takeScreenshot(page, "error-state", true)
177
177
 
178
178
  ```typescript
179
179
  import { test } from "@playwright/test"
180
- import { simulateInputPaste, waitForElement, wait } from "@askvex/waffles"
180
+ import { simulateInputPaste, waitForElement, wait } from "@chrryai/waffles"
181
181
 
182
182
  test("complete chat interaction", async ({ page }) => {
183
183
  await page.goto("https://app.com/chat")
@@ -199,7 +199,7 @@ test("complete chat interaction", async ({ page }) => {
199
199
 
200
200
  ```typescript
201
201
  import { test } from "@playwright/test"
202
- import { generateTestEmail, generateTestPassword, wait } from "@askvex/waffles"
202
+ import { generateTestEmail, generateTestPassword, wait } from "@chrryai/waffles"
203
203
 
204
204
  test("user registration", async ({ page }) => {
205
205
  const email = generateTestEmail("newuser")
@@ -226,7 +226,7 @@ MIT © [AskVex](https://askvex.com)
226
226
  ## 🔗 Links
227
227
 
228
228
  - [GitHub](https://github.com/askvex/waffles)
229
- - [npm](https://npmjs.com/package/@askvex/waffles)
229
+ - [npm](https://npmjs.com/package/@chrryai/waffles)
230
230
  - [Issues](https://github.com/askvex/waffles/issues)
231
231
  - [Vex - Powered by Waffles](https://askvex.com)
232
232
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chrryai/waffles",
3
- "version": "1.1.78",
3
+ "version": "1.1.80",
4
4
  "description": "Production-ready Playwright testing utilities and helpers for modern web apps",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",