@muggleai/works 5.12.0-staging.87 → 5.13.0-staging.89

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.
@@ -433,7 +433,7 @@ function safeInlineCode(s) {
433
433
  function buildTestNumbering(report) {
434
434
  const map = /* @__PURE__ */ new Map();
435
435
  report.tests.forEach((t, i) => {
436
- map.set(t.testCaseId, i + 1);
436
+ map.set(t, i + 1);
437
437
  });
438
438
  return map;
439
439
  }
@@ -455,7 +455,7 @@ function renderOverview(report) {
455
455
  const anyGrouped = report.tests.some((t) => Boolean(t.useCaseName));
456
456
  if (!anyGrouped) {
457
457
  for (const t of report.tests) {
458
- lines.push(`- **${numbering.get(t.testCaseId)}.** ${statusEmoji(t)} ${t.name}`);
458
+ lines.push(`- **${numbering.get(t)}.** ${statusEmoji(t)} ${t.name}`);
459
459
  }
460
460
  return lines.join("\n");
461
461
  }
@@ -480,11 +480,11 @@ function renderOverview(report) {
480
480
  }
481
481
  for (const entry of flat) {
482
482
  if (entry.type === "test") {
483
- lines.push(`- **${numbering.get(entry.test.testCaseId)}.** ${statusEmoji(entry.test)} ${entry.test.name}`);
483
+ lines.push(`- **${numbering.get(entry.test)}.** ${statusEmoji(entry.test)} ${entry.test.name}`);
484
484
  } else {
485
485
  lines.push(`- **${entry.key}**`);
486
486
  for (const t of groups.get(entry.key)) {
487
- lines.push(` - **${numbering.get(t.testCaseId)}.** ${statusEmoji(t)} ${t.name}`);
487
+ lines.push(` - **${numbering.get(t)}.** ${statusEmoji(t)} ${t.name}`);
488
488
  }
489
489
  }
490
490
  }
package/dist/cli.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { runCli } from './chunk-APXAF244.js';
2
+ import { runCli } from './chunk-TWRBO35Z.js';
3
3
  import './chunk-H5UDFKG3.js';
4
4
 
5
5
  // src/cli/main.ts
package/dist/index.js CHANGED
@@ -1,2 +1,2 @@
1
- export { src_exports as commands, createUnifiedMcpServer, server_exports as server } from './chunk-APXAF244.js';
1
+ export { src_exports as commands, createUnifiedMcpServer, server_exports as server } from './chunk-TWRBO35Z.js';
2
2
  export { createChildLogger, e2e_exports as e2e, getConfig, getLocalQaTools, getLogger, getQaTools, local_exports as localQa, mcp_exports as mcp, e2e_exports as qa, src_exports as shared } from './chunk-H5UDFKG3.js';
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "release": "5.11.0",
3
- "buildId": "run-87-1",
4
- "commitSha": "bc0e4ca5afe97b15d235d10b222be9695d2a140b",
5
- "buildTime": "2026-08-30T05:45:55Z",
3
+ "buildId": "run-89-1",
4
+ "commitSha": "837b6c1be8484a60874d233afd56ede994fcdb5b",
5
+ "buildTime": "2026-09-04T20:31:46Z",
6
6
  "serviceName": "muggle-ai-works-mcp"
7
7
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@muggleai/works",
3
3
  "mcpName": "io.github.multiplex-ai/muggle",
4
- "version": "5.12.0-staging.87",
4
+ "version": "5.13.0-staging.89",
5
5
  "description": "Ship quality products with AI-powered E2E acceptance testing that validates your web app like a real user — from Claude Code and Cursor to PR.",
6
6
  "type": "module",
7
7
  "main": "dist/index.js",