* Main execution
()
| 174 | * Main execution |
| 175 | */ |
| 176 | async function main () { |
| 177 | console.log("🔥 Basic HTTP Performance Benchmarks"); |
| 178 | |
| 179 | try { |
| 180 | await testRequestResponse(); |
| 181 | testJsonSerialization(); |
| 182 | |
| 183 | console.log("\n✅ Basic HTTP benchmarks completed\n"); |
| 184 | } catch (error) { |
| 185 | console.error("❌ Benchmark failed:", error); |
| 186 | process.exit(1); |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | main(); |
no test coverage detected