Oleg Bespalov
Oleg Bespalov
Hi @xresch ! Thanks for reporting this. The issue comes from our logging library (`github.com/sirupsen/logrus`), which escapes HTML by default (`DisableHTMLEscape: false`, default is value). https://github.com/grafana/k6/blob/144209f37be8c2dbe1bcb5cdc14f965525543b8b/cmd/root.go#L252 However, we (k6 maintainers)...
Hi @ArturSuchowierski Sorry for the late response :cry: Yes, unfortunately, I can only confirm the fact that the comma there could cause the issue for the threshold parser since it...
Seems like we could close this since we already have a `k6/experimental/webcrypto` and https://github.com/grafana/k6/issues/3154, WDYT?
The `TestClient/ReflectUnregistered` also became flaky, it pretty often fails with something like: ``` --- FAIL: TestClient (0.00s) --- FAIL: TestClient/ReflectUnregistered (0.08s) client_test.go:814: Error Trace: /home/ubuntu/actions-runner/_work/k6/k6/js/modules/k6/grpc/client_test.go:814 /home/ubuntu/actions-runner/_work/k6/k6/js/modules/k6/grpc/client_test.go:868 Error: "GoError: can't list...
I feel that having these functions globally accessible is what users will expect. However, I can't say I'm a JavaScript expert, so I am unsure if my feelings are relevant.
Hi @kraktus . It sounds to me like a valuable request. So I'll remove the triage and keep the task open for a future prioritization.
An alternative could be for sure generation certificates on the fly.
Hi @michelkaporin ! Yes, the issue is on our roadmap. However, right now I don't have any ETA. A soft-promise could be somewhere Q1 next year.
Closing as deprioritized. If we need this in the future, it could be re-opened.
Hi @netikras! The `assert` function could be easily implemented in pure JavaScript and re-used in a project. See an example below: ```javascript import http from 'k6/http'; import { check, fail...