create-healix 1.1.4 → 1.1.5

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/package.json +1 -1
  2. package/src/templates.js +4 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-healix",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "Scaffold a healix WDIO project with MCP integration ready out of the box",
5
5
  "type": "module",
6
6
  "bin": {
package/src/templates.js CHANGED
@@ -1,7 +1,7 @@
1
1
  // Template generators for create-healix scaffold output.
2
2
  // Each function returns the file content as a string with all known fixes applied.
3
3
 
4
- const HEALIX_SERVICE_VERSION = '^0.1.0';
4
+ const HEALIX_SERVICE_VERSION = '^0.2.0';
5
5
 
6
6
  export function tsconfigJson() {
7
7
  return JSON.stringify(
@@ -91,6 +91,9 @@ export function wdioWebConf(apiPort = 4000) {
91
91
  capabilities: [{
92
92
  maxInstances: 1,
93
93
  browserName: 'chrome',
94
+ // Use classic WebDriver — avoids a BiDi preload-script timeout that can stall
95
+ // session startup on some Chrome/WDIO combinations. Healix needs no BiDi features.
96
+ 'wdio:enforceWebDriverClassic': true,
94
97
  'goog:chromeOptions': {
95
98
  args: ['--no-sandbox', '--disable-dev-shm-usage'],
96
99
  },