refactor(benchmark): Expand js code node benchmark (#11052)

This commit is contained in:
Tomi Turtiainen
2024-10-02 12:04:53 +03:00
committed by GitHub
parent 27d83e0d91
commit 4db82a91b4
4 changed files with 59 additions and 60 deletions

View File

@@ -0,0 +1,22 @@
import http from 'k6/http';
import { check } from 'k6';
const apiBaseUrl = __ENV.API_BASE_URL;
export default function () {
const res = http.post(`${apiBaseUrl}/webhook/code-node-benchmark`, {});
check(res, {
'is status 200': (r) => r.status === 200,
'has items in response': (r) => {
if (r.status !== 200) return false;
try {
const body = JSON.parse(r.body);
return Array.isArray(body) ? body.length === 100 : false;
} catch (error) {
console.error('Error parsing response body: ', error);
return false;
}
},
});
}