We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If you run the following:
import exec from 'k6/execution' import http from "k6/http"; export default async function() { await http.asyncRequest("GET", "https://k6.io") exec.test.abort("well") }
You would expect k6 to stop and have this aborted. That isn't the case though due to upstream issue.
Basically due to how resolving a promise works it catches and eats the Interrupt created by the abort.
The text was updated successfully, but these errors were encountered:
WIP to work around #3983
a8c96a1
00febd9
mstoykov
Successfully merging a pull request may close this issue.
Description
If you run the following:
You would expect k6 to stop and have this aborted. That isn't the case though due to upstream issue.
Basically due to how resolving a promise works it catches and eats the Interrupt created by the abort.
The text was updated successfully, but these errors were encountered: