1
0
Fork 0
mirror of synced 2024-07-12 18:05:55 +12:00
appwrite/tests/benchmarks/graphql/account/rest.js

14 lines
317 B
JavaScript
Raw Normal View History

2022-07-14 13:47:32 +12:00
import http from 'k6/http';
export const options = {
vus: 20,
duration: '60s',
};
export default function () {
2022-07-20 01:30:01 +12:00
http.get('http://localhost/v1/account', {
2022-07-14 13:47:32 +12:00
headers: {
'Content-Type': 'application/json',
'X-Appwrite-Project': 'test',
2022-07-20 01:30:01 +12:00
'Cookie': ''
2022-07-14 13:47:32 +12:00
}
})
}