Skip to content

Instantly share code, notes, and snippets.

@Jiveloper

Jiveloper/ex.js Secret

Created October 31, 2022 12:37
Show Gist options
  • Save Jiveloper/bf559075c257b3e12a2915cbcae3d455 to your computer and use it in GitHub Desktop.
Save Jiveloper/bf559075c257b3e12a2915cbcae3d455 to your computer and use it in GitHub Desktop.
성능테스트 블로깅
import http from 'k6/http';
export default function() {
let url = 'https://httpbin.test.k6.io/post';
let response = http.post(url, 'Hello world!');
console.log(response.json().data);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment