chainwright 0.8.13 → 0.8.15
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/README.md +8 -3
- package/package.json +2 -4
package/README.md
CHANGED
|
@@ -182,7 +182,7 @@ export default defineWalletSetup(
|
|
|
182
182
|
Run setup with the CLI (Supports **npx**, **bun**, **pnpm**, and **yarn**):
|
|
183
183
|
|
|
184
184
|
>[!NOTE]
|
|
185
|
-
|
|
185
|
+
By default, Chainwright looks for `tests/wallet-setup` in your base directory. However, you can specify the directory you want Chainwright to get your setup files from.
|
|
186
186
|
|
|
187
187
|
```bash
|
|
188
188
|
bun chainwright --wallets <Wallets you want to support>
|
|
@@ -242,7 +242,7 @@ test.describe("Example tests", () => {
|
|
|
242
242
|
})
|
|
243
243
|
```
|
|
244
244
|
> [!NOTE]
|
|
245
|
-
|
|
245
|
+
The wallet fixture will make use of the `default` wallet profile. If you specified a `profile-name` at the point of setting up, make sure to include it in the fixture.
|
|
246
246
|
|
|
247
247
|
```ts
|
|
248
248
|
// No profile name is specified at setup time
|
|
@@ -314,7 +314,7 @@ Running Chainwright in CI is very similar to running Playwright in CI. The only
|
|
|
314
314
|
|
|
315
315
|
Why we make use of **xvfb**:
|
|
316
316
|
> [!IMPORTANT]
|
|
317
|
-
|
|
317
|
+
Browser extensions don't load in headless Chromium, so the tests have to run in headed mode. CI machines have no display, so launching a headed browser fails. xvfb provides a fake virtual display, letting Chromium run headed in CI as if a screen were attached.
|
|
318
318
|
|
|
319
319
|
```yml
|
|
320
320
|
name: CI
|
|
@@ -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.
|
|
3
|
+
"version": "0.8.15",
|
|
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
|
|
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",
|