@cutleryapp/agent 1.0.12 → 1.0.14

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.
@@ -80,7 +80,7 @@ class TestExecutor {
80
80
  let label = labelMatch?.[1]?.trim();
81
81
  if (label) {
82
82
  // Split "Add to cart under Sauce Labs Bike Light product" into target + scope
83
- const scopeMatch = label.match(/^(.+?)\s+(?:under|inside|within|in the)\s+(.+)$/i);
83
+ const scopeMatch = label.match(/^(.+?)\s+(?:under|inside|within|in the|in)\s+(.+)$/i);
84
84
  const target = scopeMatch ? scopeMatch[1].trim() : label;
85
85
  const scope = scopeMatch ? scopeMatch[2].trim() : null;
86
86
  const nameRe = new RegExp(escapeRegex(target), 'i');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cutleryapp/agent",
3
- "version": "1.0.12",
3
+ "version": "1.0.14",
4
4
  "description": "Local agent that connects your machine to the Cutlery QA platform and runs UI tests via Playwright",
5
5
  "main": "dist/cli.js",
6
6
  "bin": {