You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most of the internal Go objects that are passed to the script like http.Response aren't marshalled to JSON properly, the Go structs simply lack the appropriate js tags. This is especially problematic when they are returned as part of a setup() result, since it is passed through JSON before the VUs and teardown() receive it. I've briefly mentioned about this in the comments of #558 and #693, but since they've been mostly closed by #799, I'm creating this separate issue just for this bug.
Most of the internal Go objects that are passed to the script like
http.Response
aren't marshalled to JSON properly, the Gostruct
s simply lack the appropriatejs
tags. This is especially problematic when they are returned as part of asetup()
result, since it is passed through JSON before the VUs andteardown()
receive it. I've briefly mentioned about this in the comments of #558 and #693, but since they've been mostly closed by #799, I'm creating this separate issue just for this bug.To demonstrate, this script:
will output something like this:
The text was updated successfully, but these errors were encountered: