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
We have been making use of IntelliJ IDEA's Javascript import syntax, however this prevents us from using the HTTP request files with httpYac because httpYac does not support import statements (it expects require). And unfortunately, httpYac's require syntax is not supported in IntelliJ, so there appears to be currently no cross-IDE solution. Is there any chance for httpYac for VSCode to add support for JS import statements?
Also:
This JS syntax works in IntelliJ but doesn't work in httpYac:
const match = response.body.match(/foo/i) (need to change it to const match = String(response.body).match(/foo/i))
client.log("match", match) (need to change it to client.log("match: " + match))
The feature comparison says that IntelliJ doesn't have some features although these features actually exist:
"Built-in Preview Support": see the small preview button beside the raw response, it allows to see the rendered HTML response. The documentation shows that it's also possible to preview PDF and image responses.
Thanks for building this great tool!
Tested with httpYac 6.16.14
The text was updated successfully, but these errors were encountered:
We have been making use of IntelliJ IDEA's Javascript
import
syntax, however this prevents us from using the HTTP request files with httpYac because httpYac does not supportimport
statements (it expectsrequire
). And unfortunately, httpYac'srequire
syntax is not supported in IntelliJ, so there appears to be currently no cross-IDE solution. Is there any chance for httpYac for VSCode to add support for JS import statements?Also:
const match = response.body.match(/foo/i)
(need to change it toconst match = String(response.body).match(/foo/i)
)client.log("match", match)
(need to change it toclient.log("match: " + match)
)Thanks for building this great tool!
Tested with httpYac 6.16.14
The text was updated successfully, but these errors were encountered: