mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
12 lines
270 B
JavaScript
12 lines
270 B
JavaScript
import http from 'k6/http';
|
|
import { check } from 'k6';
|
|
|
|
const apiBaseUrl = __ENV.API_BASE_URL;
|
|
|
|
export default function () {
|
|
const res = http.post(`${apiBaseUrl}/webhook/set-expressions-benchmark`, {});
|
|
check(res, {
|
|
'is status 200': (r) => r.status === 200,
|
|
});
|
|
}
|