mirror of
https://github.com/steedos/steedos-platform
synced 2024-11-22 17:06:42 +00:00
23 lines
485 B
JavaScript
23 lines
485 B
JavaScript
/*
|
|
* @Author: baozhoutao@steedos.com
|
|
* @Date: 2022-11-10 17:44:26
|
|
* @LastEditors: baozhoutao@steedos.com
|
|
* @LastEditTime: 2022-11-11 14:49:16
|
|
* @Description:
|
|
*/
|
|
import http from "k6/http";
|
|
import { check, group, sleep } from "k6";
|
|
|
|
export const options = {
|
|
vus: 30,
|
|
duration: '30s',
|
|
};
|
|
|
|
export default () => {
|
|
|
|
const loginRes = http.get(`http://127.0.0.1:5301/api/health`);
|
|
check(loginRes, { "retrieved crocodiles": (obj) => obj.body.length > 0 });
|
|
|
|
sleep(1);
|
|
};
|
|
|