k6 icon indicating copy to clipboard operation
k6 copied to clipboard

A modern load testing tool, using Go and JavaScript - https://k6.io

Results 473 k6 issues
Sort by recently updated
recently updated
newest added

**Update** — the current agreement from the comments: https://github.com/grafana/k6/issues/1722#issuecomment-796752500 >So, yeah, I think we should either close this issue and https://github.com/grafana/k6/pull/1877, or "fix" it by freezing __ENV so any attempts...

enhancement
good first issue
ux
js-compat

### Brief summary I am using the K6 datadog integration as mentioned here - https://k6.io/docs/results-visualization/datadog/ I am using docker container to send metrics to datadog from K6 run through teamcity....

bug
triage
metrics-output
statsd

Now that k6 supports generator the following code ```javascript export default function* () { console.log(1); yield 1; console.log(2); yield 2; console.log(3); yield 3; } ``` is valid and will not...

ux
js-compat
evaluation needed

```javascript import {SharedArray} from "k6/data"; let s = new SharedArray("cool", async() => { return [1, 2, 3]; }) export default function () { console.log(s); } ``` Will give you ```...

ux
js-compat
evaluation needed

### Feature Description Right now trying to init a Trend or other metric from within your exported test function will error. This prevents test writers from being able to add...

feature
evaluation needed

### Brief summary Hi, I'm currently testing a scenario where different payload sizes are getting used with a post request (1kb, 100kb, 300kb, 600kb). For that I open a file...

performance

### Feature Description response.submitForm() shall handle the _formaction_ attribute of the _input_ tag. ``` ``` Actually _submitForm_ post its request either to the _action_ defined in the form tag, or...

feature
awaiting user

### Feature Description Global matching pattern is widely used across different automation tools, i.e. Cypress `cy.intercept({ method: 'PUT', url: '**/users/*' })` It would also bring benefit in terms of flexibility,...

feature
evaluation needed

### Feature Description It would be advisable to occasionally expand the k6 command with functionalities not directly related to test execution. These additional functionalities could be included in the k6...

feature

### Feature Description To be able to set a projectID where my Cloud tests should be run by default. ### Suggested Solution (optional) It could be part of the `login...

cloud
feature
awaiting user