* Main execution function
()
| 354 | * Main execution function |
| 355 | */ |
| 356 | async function main () { |
| 357 | benchmarkCustomSerializer(); |
| 358 | benchmarkPlainSerializer(); |
| 359 | benchmarkSerializerComparison(); |
| 360 | benchmarkErrorHandling(); |
| 361 | benchmarkDataSizeImpact(); |
| 362 | testSerializerMemoryUsage(); |
| 363 | benchmarkStatusCodeHandling(); |
| 364 | |
| 365 | console.log("✅ Serializer benchmarks completed\n"); |
| 366 | } |
| 367 | |
| 368 | main().catch(console.error); |
no test coverage detected