-
Notifications
You must be signed in to change notification settings - Fork 622
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
installer: test installed module run correctly in the system #509
Conversation
@axetroy can you update the rest of installer test cases to install either |
@bartlomieju Are you saying that the file_server module is no longer installed as a test? |
It is, but it's a bad module to install in pipeline. There is no need to install a module which has a lot of deps. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -241,6 +241,11 @@ export async function install( | |||
} | |||
} | |||
|
|||
// if install local module | |||
if (!/^https?:\/\//.test(moduleUrl)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yikes, this should have been merged in #499
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I miss this. :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will add the relevant tests to install the local module.
move to #512 |
This cleans up some of the unnecessary LOC for the script. Related to denoland#471
Make sure the installed modules are working correctly on the system.
closes #500
wait for #510 be merged, and this PR should ready for review.