@testsmith/testblocks 0.8.6 → 0.8.7

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/cli/index.js CHANGED
@@ -267,6 +267,10 @@ program
267
267
  }
268
268
  // Merge variables: globals first, then CLI overrides
269
269
  const variables = { ...globalVariables, ...cliVariables };
270
+ // If baseUrl is provided via CLI, add it to variables so ${baseUrl} resolves correctly
271
+ if (options.baseUrl) {
272
+ variables.baseUrl = options.baseUrl;
273
+ }
270
274
  // Create executor options
271
275
  const executorOptions = {
272
276
  headless: !options.headed,
@@ -443,7 +447,7 @@ program
443
447
  'test:ci': 'testblocks run tests/**/*.testblocks.json -r console,html,junit -o reports',
444
448
  },
445
449
  devDependencies: {
446
- '@testsmith/testblocks': '^0.8.6',
450
+ '@testsmith/testblocks': '^0.8.7',
447
451
  },
448
452
  };
449
453
  fs.writeFileSync(packagePath, JSON.stringify(packageJson, null, 2));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testsmith/testblocks",
3
- "version": "0.8.6",
3
+ "version": "0.8.7",
4
4
  "description": "Visual test automation tool with Blockly - API and Playwright testing",
5
5
  "author": "Roy de Kleijn",
6
6
  "license": "MIT",