performance-testing/tests/simple-test.js

10 lines
169 B
JavaScript
Raw Permalink Normal View History

2023-09-26 10:52:17 +00:00
import http from 'k6/http';
export const options = {
vus: 1,
2023-09-28 09:02:15 +00:00
duration: '10s'
2023-09-26 10:52:17 +00:00
};
export default () => {
2023-09-27 11:22:11 +00:00
http.get('http://localhost:5157/age/1990-01-01');
2023-09-26 10:52:17 +00:00
};