@broccolo1d/playwright 0.2.3 → 0.2.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/README.md +1 -1
- package/dist/index.js +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ This package is for consumer app repos. The app owns routes, selectors, wallet m
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
pnpm add -D @broccolo1d/playwright@0.2.
|
|
10
|
+
pnpm add -D @broccolo1d/playwright@0.2.4 @playwright/test
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
ESM-only. Node.js `>=22 <23`.
|
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ const DEFAULT_WALLET_CONFIG = {
|
|
|
9
9
|
useRealWallet: false,
|
|
10
10
|
artifactDir: '.wallet-artifacts/playwright'
|
|
11
11
|
};
|
|
12
|
-
const PLAYWRIGHT_PACKAGE_VERSION = '0.2.
|
|
12
|
+
const PLAYWRIGHT_PACKAGE_VERSION = '0.2.4';
|
|
13
13
|
function runtimeMetadata() {
|
|
14
14
|
return { node: process.version, platform: process.platform, arch: process.arch };
|
|
15
15
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@broccolo1d/playwright",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "Playwright fixtures for policy-gated browser-wallet dapp QA.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -41,16 +41,11 @@
|
|
|
41
41
|
"LICENSE",
|
|
42
42
|
"package.json"
|
|
43
43
|
],
|
|
44
|
-
"scripts": {
|
|
45
|
-
"build": "pnpm --filter @broccolo1d/wallet-browser build && tsc -p tsconfig.json",
|
|
46
|
-
"test": "pnpm --filter @broccolo1d/wallet-browser build && vitest run",
|
|
47
|
-
"typecheck": "pnpm --filter @broccolo1d/wallet-browser build && tsc -p tsconfig.json --noEmit"
|
|
48
|
-
},
|
|
49
44
|
"peerDependencies": {
|
|
50
45
|
"@playwright/test": "^1.59.1"
|
|
51
46
|
},
|
|
52
47
|
"dependencies": {
|
|
53
|
-
"@broccolo1d/wallet-browser": "
|
|
48
|
+
"@broccolo1d/wallet-browser": "^0.2.4"
|
|
54
49
|
},
|
|
55
50
|
"devDependencies": {
|
|
56
51
|
"@playwright/test": "1.59.1",
|
|
@@ -59,5 +54,10 @@
|
|
|
59
54
|
},
|
|
60
55
|
"publishConfig": {
|
|
61
56
|
"access": "public"
|
|
57
|
+
},
|
|
58
|
+
"scripts": {
|
|
59
|
+
"build": "pnpm --filter @broccolo1d/wallet-browser build && tsc -p tsconfig.json",
|
|
60
|
+
"test": "pnpm --filter @broccolo1d/wallet-browser build && vitest run",
|
|
61
|
+
"typecheck": "pnpm --filter @broccolo1d/wallet-browser build && tsc -p tsconfig.json --noEmit"
|
|
62
62
|
}
|
|
63
|
-
}
|
|
63
|
+
}
|