-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
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
The moduleSpecifier "../../libs/shim/urijs.js" couldn't be found on local disk. #49
Comments
hi @CMathgician Could you provide me an example of which CLI parameters you are using? The issue should have been fixed a year ago and I want to be able to reproduce it. |
@thim81 Sorry, I can't share the collection. and here the folder structure looks like after running that command: Even on VSCode it's unable to resolve that |
I think I see the issue. Can you confirm or share if the requests in Postman or in a folder? I use the "seperate" parameters but I think it is linked to requests not being in a folder, which results in an incorrect "import" path. |
Thanks for providing the info to reproduce the issue. The bug is linked to requests not being in folders, while the convertor was expecting it in a folder. |
@CMathgician The relative path issue is resolved and it will be part of the upcoming postman-to-k6 release. Thanks for taking the time to report the issue. |
Thank you @thim81 |
hi @CMathgician, The latest postman-to-k6 version (1.8.5) contains this enhancement. |
Similar to this issue before: grafana/postman-to-k6#78
I changed the
import "../../libs/shim/urijs.js";
on requests intoimport "../libs/shim/urijs.js";
and it runs well
The text was updated successfully, but these errors were encountered: