Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/scripts/process-benchmarks.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ const BUILD_DIR = 'benchmark-results/build';
const OUTPUT_DIR = 'docs/docs/benchmarks';
const STATIC_DIR = 'docs/static/benchmarks';

const RUNTIME_DESCRIPTIONS = {
AsyncTests: 'Realistic async/await patterns with I/O simulation',
DataDrivenTests: 'Parameterized tests with multiple data sources',
MassiveParallelTests: 'Parallel execution stress tests',
MatrixTests: 'Combinatorial test generation and execution',
ScaleTests: 'Large test suites (150+ tests) measuring scalability',
SetupTeardownTests: 'Expensive test fixtures with setup/teardown overhead',
};

console.log('🚀 Processing benchmark results...\n');

// Ensure output directories exist
Expand Down Expand Up @@ -371,7 +380,7 @@ These benchmarks were automatically generated on **${timestamp}** from the lates
Click on any benchmark to view detailed results:
${Object.keys(categories.runtime).map(testClass =>
`- [${testClass}](./${testClass}.md) - Detailed performance analysis`
`- [${testClass}](./${testClass}.md)${RUNTIME_DESCRIPTIONS[testClass] ? ` — ${RUNTIME_DESCRIPTIONS[testClass]}` : ''}`
).join('\n')}
${Object.keys(categories.build).length > 0 ? `
Expand Down
12 changes: 6 additions & 6 deletions docs/docs/benchmarks/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ These benchmarks were automatically generated on **2026-04-17** from the latest

Click on any benchmark to view detailed results:

- [AsyncTests](./AsyncTests.md) - Detailed performance analysis
- [DataDrivenTests](./DataDrivenTests.md) - Detailed performance analysis
- [MassiveParallelTests](./MassiveParallelTests.md) - Detailed performance analysis
- [MatrixTests](./MatrixTests.md) - Detailed performance analysis
- [ScaleTests](./ScaleTests.md) - Detailed performance analysis
- [SetupTeardownTests](./SetupTeardownTests.md) - Detailed performance analysis
- [AsyncTests](./AsyncTests.md) — Realistic async/await patterns with I/O simulation
- [DataDrivenTests](./DataDrivenTests.md) — Parameterized tests with multiple data sources
- [MassiveParallelTests](./MassiveParallelTests.md) — Parallel execution stress tests
- [MatrixTests](./MatrixTests.md) — Combinatorial test generation and execution
- [ScaleTests](./ScaleTests.md) — Large test suites (150+ tests) measuring scalability
- [SetupTeardownTests](./SetupTeardownTests.md) — Expensive test fixtures with setup/teardown overhead


## 🔨 Build Benchmarks
Expand Down
Loading