chainwright 0.8.12 → 0.8.14

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 +7 -2
  2. package/package.json +2 -4
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  </picture>
7
7
  <br><br>
8
8
  <span align="center">
9
- Test, automate, and verify every wallet interaction, with the precision your users expect.
9
+ Test, automate, and verify every wallet interaction with the precision, your users expect.
10
10
  </span>
11
11
  <br><br>
12
12
  <span align="center">
@@ -309,7 +309,7 @@ test.describe("Example test", () => {
309
309
  - `profileName?: string`
310
310
  - `slowMo?: number`
311
311
 
312
- ### 4. Using in CI (GitHub Actions)
312
+ ### 4. Running in CI (GitHub Actions)
313
313
  Running Chainwright in CI is very similar to running Playwright in CI. The only additional requirement is a cache-build step before executing tests, as shown below:
314
314
 
315
315
  Why we make use of **xvfb**:
@@ -437,3 +437,8 @@ Additional wallet-specific actions are available, for example:
437
437
  ## License
438
438
 
439
439
  MIT
440
+
441
+ ---
442
+
443
+ Built by **Tobechukwu**. ([github](https://github.com/amaify))
444
+ Contributions are welcome: see [CONTRIBUTING.md](./CONTRIBUTING.md) to get involved.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chainwright",
3
- "version": "0.8.12",
3
+ "version": "0.8.14",
4
4
  "description": "Playwright Web3 wallet testing framework for end-to-end dApp automation with MetaMask, Phantom, Solflare, Petra, Meteor, and Keplr",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -109,9 +109,7 @@
109
109
  "changeset": "changeset",
110
110
  "version-package": "changeset version",
111
111
  "release": "pnpm run build && changeset publish",
112
- "dev": "tsx src/cli/index.ts ./tests/wallet-setup --all -f",
113
- "setup-wallets": "tsx src/cli/index.ts ./tests/wallet-setup --all",
114
- "wallets": "tsx src/cli/index.ts ./tests/wallet-setup --wallets keplr petra",
112
+ "dev": "tsx src/cli/index.ts ./tests/wallet-setup",
115
113
  "tests": "vitest --exclude '**/*.spec.ts'",
116
114
  "lint": "biome check ./src",
117
115
  "format": "biome format --write ./src",