mirror of https://github.com/ncarlier/webhookd
16 lines
375 B
JavaScript
16 lines
375 B
JavaScript
import http from 'k6/http';
|
|
import { check, sleep } from 'k6';
|
|
|
|
export const options = {
|
|
stages: [
|
|
{ duration: '30s', target: 20 },
|
|
{ duration: '1m', target: 10 },
|
|
{ duration: '20s', target: 0 },
|
|
],
|
|
};
|
|
|
|
export default function () {
|
|
const res = http.get('http://localhost:8080/echo');
|
|
check(res, { 'status was 200': (r) => r.status == 200 });
|
|
sleep(1);
|
|
} |