@avalix/chroma 0.0.5 → 0.0.6

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 CHANGED
@@ -104,7 +104,7 @@ const customTest = createWalletTest({
104
104
  customPath: './custom-extension', // Optional: path to custom extension
105
105
  downloadUrl: 'https://...' // Optional: custom download URL
106
106
  },
107
- headless: false, // Optional: run in headless mode (default: false)
107
+ headless: true, // Optional: run in headless mode
108
108
  slowMo: 150 // Optional: slow motion delay in ms (default: 150)
109
109
  })
110
110
  ```
package/dist/index.js CHANGED
@@ -68,6 +68,7 @@ function createWalletTest(options = {}) {
68
68
  const extensionPath = await getExtensionPath(walletType, finalWalletConfig);
69
69
  const context = await chromium.launchPersistentContext("", {
70
70
  headless,
71
+ channel: "chromium",
71
72
  args: [`--load-extension=${extensionPath}`, `--disable-extensions-except=${extensionPath}`],
72
73
  slowMo
73
74
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@avalix/chroma",
3
3
  "type": "module",
4
- "version": "0.0.5",
4
+ "version": "0.0.6",
5
5
  "description": "End-to-end testing library for Polkadot wallet interactions",
6
6
  "author": "Avalix Labs",
7
7
  "license": "MIT",