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
4 changes: 2 additions & 2 deletions .github/scripts/process-benchmarks.js
Original file line number Diff line number Diff line change
Expand Up @@ -371,13 +371,13 @@ 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}) - Detailed performance analysis`
`- [${testClass}](./${testClass}.md) - Detailed performance analysis`
).join('\n')}

${Object.keys(categories.build).length > 0 ? `
## 🔨 Build Benchmarks

- [Build Performance](BuildTime) - Compilation time comparison
- [Build Performance](./BuildTime.md) - Compilation time comparison
` : ''}

---
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/process-mock-benchmarks.js
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ ${libraryTableRows}
Click on any benchmark to view detailed results:

${Object.keys(categories).map(category =>
`- [${category}](${category}) - ${categoryDescriptions[category] || category}`
`- [${category}](./${category}.md) - ${categoryDescriptions[category] || category}`
).join('\n')}

## 📈 What's Measured
Expand Down
14 changes: 7 additions & 7 deletions docs/docs/benchmarks/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ These benchmarks were automatically generated on **2026-04-17** from the latest

Click on any benchmark to view detailed results:

- [AsyncTests](AsyncTests) - Detailed performance analysis
- [DataDrivenTests](DataDrivenTests) - Detailed performance analysis
- [MassiveParallelTests](MassiveParallelTests) - Detailed performance analysis
- [MatrixTests](MatrixTests) - Detailed performance analysis
- [ScaleTests](ScaleTests) - Detailed performance analysis
- [SetupTeardownTests](SetupTeardownTests) - Detailed performance analysis
- [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


## 🔨 Build Benchmarks

- [Build Performance](BuildTime) - Compilation time comparison
- [Build Performance](./BuildTime.md) - Compilation time comparison


---
Expand Down
12 changes: 6 additions & 6 deletions docs/docs/benchmarks/mocks/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ These benchmarks compare source-generated, AOT-compatible mocking libraries agai

Click on any benchmark to view detailed results:

- [Callback](Callback) - Callback registration and execution
- [CombinedWorkflow](CombinedWorkflow) - Full workflow: create → setup → invoke → verify
- [Invocation](Invocation) - Calling methods on mock objects
- [MockCreation](MockCreation) - Mock instance creation performance
- [Setup](Setup) - Mock behavior configuration (returns, matchers)
- [Verification](Verification) - Verifying mock method calls
- [Callback](./Callback.md) - Callback registration and execution
- [CombinedWorkflow](./CombinedWorkflow.md) - Full workflow: create → setup → invoke → verify
- [Invocation](./Invocation.md) - Calling methods on mock objects
- [MockCreation](./MockCreation.md) - Mock instance creation performance
- [Setup](./Setup.md) - Mock behavior configuration (returns, matchers)
- [Verification](./Verification.md) - Verifying mock method calls

## 📈 What's Measured

Expand Down
Loading