1
0
Fork 0
mirror of synced 2024-08-18 19:51:55 +12:00
appwrite/tests/benchmarks/rest.js
2022-07-14 13:47:32 +12:00

13 lines
No EOL
301 B
JavaScript

import http from 'k6/http';
export const options = {
vus: 20,
duration: '60s',
};
export default function () {
http.get('http://localhost/v1/locale/countries', {
headers: {
'Content-Type': 'application/json',
'X-Appwrite-Project': 'test',
}
})
}