-
Notifications
You must be signed in to change notification settings - Fork 51
k6 code sample #25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
k6 code sample #25
Conversation
first commit
|
@chrisfaragliaTestRail can you please review? |
samples/k6/test_k6.js
Outdated
| const baseUrl = 'http://jsonplaceholder.typicode.com'; | ||
|
|
||
| export const options = { | ||
| vus: 5, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would reduce this to 1, since I'm certain how much load this adds to this service online
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That change was already committed on friday, after our call.
| echo | ||
|
|
||
| npm install -g k6 | ||
| npm install -g k6-to-junit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe lets do an inline comment that notes that this library for k6-to-junit is required in additional to the base k6 install
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a comment about installing k6, I'll add a note about library as well.
updated comment for k6 junit library installation
first commit of k6 integration with TRCLI code sample