w3wallets 0.4.0 → 0.4.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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -291,7 +291,7 @@ function withWallets(test, ...config) {
|
|
|
291
291
|
extensionPaths.push(polkadotJSPath);
|
|
292
292
|
}
|
|
293
293
|
if (withMetamask) {
|
|
294
|
-
ensureWalletExtensionExists(
|
|
294
|
+
ensureWalletExtensionExists(metamaskPath, "metamask");
|
|
295
295
|
extensionPaths.push(metamaskPath);
|
|
296
296
|
}
|
|
297
297
|
const context = await import_test4.chromium.launchPersistentContext(userDataDir, {
|
package/dist/index.mjs
CHANGED
|
@@ -257,7 +257,7 @@ function withWallets(test, ...config) {
|
|
|
257
257
|
extensionPaths.push(polkadotJSPath);
|
|
258
258
|
}
|
|
259
259
|
if (withMetamask) {
|
|
260
|
-
ensureWalletExtensionExists(
|
|
260
|
+
ensureWalletExtensionExists(metamaskPath, "metamask");
|
|
261
261
|
extensionPaths.push(metamaskPath);
|
|
262
262
|
}
|
|
263
263
|
const context = await chromium.launchPersistentContext(userDataDir, {
|