@yasserkhanorg/e2e-agents 0.8.0 → 0.8.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.
@@ -1 +1 @@
1
- {"version":3,"file":"plan_builder.d.ts","sourceRoot":"","sources":["../../src/engine/plan_builder.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,oBAAoB,CAAC;AACrD,OAAO,KAAK,EAAC,YAAY,EAAkB,MAAM,oBAAoB,CAAC;AAEtE,OAAO,KAAK,EAAC,kBAAkB,EAAC,MAAM,oBAAoB,CAAC;AAG3D,OAAO,KAAK,EACR,UAAU,EACV,SAAS,EACT,kBAAkB,EAIrB,MAAM,kBAAkB,CAAC;AAE1B,YAAY,EAAC,UAAU,EAAE,SAAS,EAAE,kBAAkB,EAAC,CAAC;AAqOxD,wBAAgB,mBAAmB,CAC/B,MAAM,EAAE,YAAY,EACpB,cAAc,CAAC,EAAE,OAAO,CAAC,YAAY,CAAC,EACtC,YAAY,CAAC,EAAE,kBAAkB,GAClC,UAAU,CA0IZ;AAED,wBAAgB,eAAe,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,GAAG,MAAM,CAMzE;AAED,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,UAAU,GAAG,MAAM,CAuGhE;AAED,wBAAgB,cAAc,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,YAAY,SAAiC,GAAG,MAAM,CAMvH"}
1
+ {"version":3,"file":"plan_builder.d.ts","sourceRoot":"","sources":["../../src/engine/plan_builder.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,oBAAoB,CAAC;AACrD,OAAO,KAAK,EAAC,YAAY,EAAkB,MAAM,oBAAoB,CAAC;AAEtE,OAAO,KAAK,EAAC,kBAAkB,EAAC,MAAM,oBAAoB,CAAC;AAG3D,OAAO,KAAK,EACR,UAAU,EACV,SAAS,EACT,kBAAkB,EAIrB,MAAM,kBAAkB,CAAC;AAE1B,YAAY,EAAC,UAAU,EAAE,SAAS,EAAE,kBAAkB,EAAC,CAAC;AAqOxD,wBAAgB,mBAAmB,CAC/B,MAAM,EAAE,YAAY,EACpB,cAAc,CAAC,EAAE,OAAO,CAAC,YAAY,CAAC,EACtC,YAAY,CAAC,EAAE,kBAAkB,GAClC,UAAU,CA0IZ;AAED,wBAAgB,eAAe,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,GAAG,MAAM,CAMzE;AAED,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,UAAU,GAAG,MAAM,CAwGhE;AAED,wBAAgB,cAAc,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,YAAY,SAAiC,GAAG,MAAM,CAMvH"}
@@ -392,13 +392,14 @@ function renderCiSummaryMarkdown(plan) {
392
392
  lines.push(`### 💡 New behavior detected in ${flowsWithAdvisory.length} covered feature${flowsWithAdvisory.length !== 1 ? 's' : ''} — consider adding tests`);
393
393
  lines.push('');
394
394
  for (const flow of flowsWithAdvisory) {
395
- // Green [!TIP] box: just the name (always visible, compact)
396
- lines.push(`> [!TIP]`);
397
- lines.push(`> **${flow.name}** · ${flow.priority}`);
398
- lines.push('');
399
- // Specs + scenarios: collapsible below
400
- const coverageSummary = flow.coveredBy.join(', ');
401
- lines.push(`<details><summary>${coverageSummary} click to see suggested scenarios</summary>`);
395
+ const specParts = [];
396
+ for (const s of flow.coveredBy) {
397
+ // Strip "N Playwright spec(s)" "N PW" and "N Cypress spec(s)" → "N Cy"
398
+ specParts.push(s.replace(/ Playwright spec\(s\)/, ' PW').replace(/ Cypress spec\(s\)/, ' Cy'));
399
+ }
400
+ const specSummary = specParts.length > 0 ? ` — ${specParts.join(' · ')}` : '';
401
+ const scenarioCount = flow.advisoryScenarios.length;
402
+ lines.push(`<details><summary>💡 <strong>${flow.name}</strong> · ${flow.priority}${specSummary} · ${scenarioCount} scenario${scenarioCount !== 1 ? 's' : ''}</summary>`);
402
403
  lines.push('');
403
404
  for (const s of flow.advisoryScenarios) {
404
405
  lines.push(`- [ ] ${s}`);
@@ -386,13 +386,14 @@ export function renderCiSummaryMarkdown(plan) {
386
386
  lines.push(`### 💡 New behavior detected in ${flowsWithAdvisory.length} covered feature${flowsWithAdvisory.length !== 1 ? 's' : ''} — consider adding tests`);
387
387
  lines.push('');
388
388
  for (const flow of flowsWithAdvisory) {
389
- // Green [!TIP] box: just the name (always visible, compact)
390
- lines.push(`> [!TIP]`);
391
- lines.push(`> **${flow.name}** · ${flow.priority}`);
392
- lines.push('');
393
- // Specs + scenarios: collapsible below
394
- const coverageSummary = flow.coveredBy.join(', ');
395
- lines.push(`<details><summary>${coverageSummary} click to see suggested scenarios</summary>`);
389
+ const specParts = [];
390
+ for (const s of flow.coveredBy) {
391
+ // Strip "N Playwright spec(s)" "N PW" and "N Cypress spec(s)" → "N Cy"
392
+ specParts.push(s.replace(/ Playwright spec\(s\)/, ' PW').replace(/ Cypress spec\(s\)/, ' Cy'));
393
+ }
394
+ const specSummary = specParts.length > 0 ? ` — ${specParts.join(' · ')}` : '';
395
+ const scenarioCount = flow.advisoryScenarios.length;
396
+ lines.push(`<details><summary>💡 <strong>${flow.name}</strong> · ${flow.priority}${specSummary} · ${scenarioCount} scenario${scenarioCount !== 1 ? 's' : ''}</summary>`);
396
397
  lines.push('');
397
398
  for (const s of flow.advisoryScenarios) {
398
399
  lines.push(`- [ ] ${s}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yasserkhanorg/e2e-agents",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Pluggable LLM provider library for AI-powered test automation. Use Claude, Ollama, or your own LLM. Integrate with Playwright, Jest, or any test framework. MCP server for test agents, cost tracking, and hybrid provider mode.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/esm/index.js",